-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 849 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mundahl's Play</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script> // lesson 45: Events part 1
function greet() {
alert("Hello world!");
}
</script>
<a href="JavaScript:void(0)" onClick="greet();">This Link Is Too Happy</a>
<script src="script.js"></script>
<input type="button" value="ClickMe Please" onClick="alert('Oh that is my Q!');">
<script>
function greet() {
alert("Hello world!");
}
</script>
<input type="button" value="What do Neural Nets first teach themselves to code?" onClick="greet();">
<img src="rainbow.jpg" onMouseover="src='treeclimber.jpg'" onMouseout="src='rainbow.jpg'">
</body>
</html>