-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
45 lines (36 loc) · 1.2 KB
/
testing.html
File metadata and controls
45 lines (36 loc) · 1.2 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
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 rel="stylesheet" href="testing.css">
<title>Testing</title>
</head>
<body>
<button class="subscribe">Follow</button>
<div class="menu-container">
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="menu-toggle-btn">
<span class="hamburger"></span>
</label>
<nav class="menu">
<!-- Navigation items go here -->
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
<div class="container">
<div class="item"><h1>HEllo</h1></div>
<div class="item"><h1>HEllo</h1></div>
<div class="item"><h1>HEllo</h1></div>
<div class="item"><h1>HEllo</h1></div>
<div class="item"><h1>HEllo</h1></div>
<div class="item"><h1>HEllo</h1></div>
</div>
<script src="testing.js"></script>
</body>
</html>