-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
47 lines (38 loc) · 1.2 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Event Handling</title>
<link rel="stylesheet" href="style.css">
<script src="index.js" charset="utf-8" defer></script>
</head>
<body>
<main id="box-container">
<div class="box highlighted">
<button class="in-box-button">Click me!</button>
<a id="website-link" href="http://web.engr.oregonstate.edu/~hessro/teaching/cs290-f22" target="_blank">Link to <span class="website-title">CS 290 website</span></a>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
<div class="box">
<button class="in-box-button">Click me!</button>
</div>
</main>
</body>
</html>