-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
38 lines (38 loc) · 1.3 KB
/
Copy pathpractice.html
File metadata and controls
38 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scroll Website</title>
</head>
<body>
<nav class="new">
<div class="new_container">
<a href="#home" id="new_logo">COLOR</a>
<div class="new_toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="new_menu">
<li class="new_item">
<a href="#home" class="new_links" id="home-page">Home</a>
</li>
<li class="new_item">
<a href="#about" class="new_links" id="about-page">About</a>
</li>
<li class="new_item">
<a href="#products" class="new_links" id="products-page">Products</a>
</li>
<li class="new_item">
<a href="#services" class="new_links" id="services-page">Services</a>
</li>
<li class="new_btn">
<a href="#sign-up" class="button" id="signup">Sign up</a>
</li>
</ul>
</div>
</nav>
</body>
</html>