mirror of
https://github.com/fergalmoran/buttnerdz.git
synced 2025-12-22 09:29:55 +00:00
27 lines
306 B
HTML
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> |