This commit is contained in:
RobinNixon
2021-04-18 15:31:38 +01:00
parent f63a81074d
commit 188af22a54
224 changed files with 79 additions and 2241 deletions
+12
View File
@@ -0,0 +1,12 @@
<html>
<head>
<title>Link Test</title>
</head>
<body>
<a id="mylink" href="http://mysite.com">Click me</a><br>
<script>
url = document.links.mylink.href
document.write('The URL is ' + url)
</script>
</body>
</html>
+13
View File
@@ -0,0 +1,13 @@
<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>