13 lines
262 B
HTML
13 lines
262 B
HTML
<html>
|
|
<head>
|
|
<title>Hello World</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
document.write("Hello World")
|
|
</script>
|
|
<noscript>
|
|
Your browser doesn't support or has disabled JavaScript
|
|
</noscript>
|
|
</body>
|
|
</html> |