<html> <head> </head> <body> <h1>Hello World!</h1> </body> </html>
<a href="url"> link text </a>
<html> <head> </head> <body> <h1>Hello World!</h1> <a href="goodby.html"> Good By </body> </html>
<script type="text/javascript"> // code goes here </script>
<script src="path to source"> </script>
let i; for (i = 0; i < 10; i++) { console.log("i = ", i); }