-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.08 KB
/
index.html
File metadata and controls
41 lines (36 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Toggles</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<input type="checkbox" id="toggle-menu" />
<input type="checkbox" id="toggle-modal" />
<header class="header">
<div class="header-inner">
<h1>CWR</h1>
<label class="hamburger" for="toggle-menu">
<span class="hamburger-bar"></span>
<span class="hamburger-bar"></span>
<span class="hamburger-bar"></span>
</label>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Services</a></li>
</ul>
</div>
</header>
<label for="toggle-modal">Open modal</label>
<div class="modal">
<div class="modal-box">
<p>I am inside of the modal</p>
<label for="toggle-modal">Close modal</label>
</div>
</div>
</body>
</html>