Files
buttnerdz/code/lesson-1/index.html
Fergal Moran 5fa540c57e Lesson 2
2020-11-23 20:04:01 +00:00

27 lines
306 B
HTML

<html>
<head>
</head>
<body>
<h1>
Eggiwegs!
</h1>
<button onclick="foo();">This is a cool button</button>
<hr />
<a href="page2.html">Bring me to Google</a>
<script>
function foo() {
alert('Yah, boi!!!');
}
</script>
</body>
</html>