Skip to content

Instantly share code, notes, and snippets.

@nmelox
Created September 30, 2011 22:19
Show Gist options
  • Save nmelox/1255149 to your computer and use it in GitHub Desktop.
Save nmelox/1255149 to your computer and use it in GitHub Desktop.
project de javascript
<html>
<body>
<script type="text/javascript">
alert("Hello World!")
document.writeln(new Date()+"<br>")
var _sum1 = 40
var _sum2 = 30
var res = _sum1 + _sum2
document.write(res)
</script>
<NOSCRIPT>
Este navegador no comprende los scripts que se están ejecutando, debes actualizar tu versión de navegador a una más reciente.
<br><br>
<a href=http://netscape.com>Netscape</a>.<br>
<a href=http://microsoft.com>Microsoft</a>.
</NOSCRIPT>
<p>A browser without support for JavaScript will show the text in the noscript element.</p>
<input type=button value=Atrás onclick="history.go(-1)">
</input>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment