-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Events exercise</title>
</head>
<body>
<div class="container">
<h1>Events 0</h1>
<ul class="tabs">
<li class="tab one active">
<button>ONE</button>
</li>
<li class="tab two">
<button>TWO</button>
</li>
<li class="tab three">
<button>THREE</button>
</li>
<li class="tab four">
<button>FOUR</button>
</li>
</ul>
<div class="content active one" id="content-1">
Testing out a CSS tab menu.
</div>
<div class="content two" id="content-2">
Stuff.
</div>
<div class="content three" id="content-3">
More stuff.
</div>
<div class="content four" id="content-4">
A lot of stuff.
</div>
</div>
,<script src="./js/index.js"></script>
</body>
</html>