-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Navbar - Html Css Javascript</title>
<meta charset="utf-8">
<link rel="shortcut icon" href="image/cc.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="skiptocontent"><a href="#maincontent">skip to main content</a></div>
<header class="header">
<div class="container">
<div class="row align-items-center justify-content-between">
<h2 class="logo">
<a href="#">
<img src="image/cc.png" alt="logo">
</a>
</h2>
<button type="button" class="nav-toggler">
<span></span>
</button>
<nav class="nav">
<ul>
<li><a href="#" class="active">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">portfolio</a></li>
<li><a href="#">testimonials</a></li>
<li><a href="#">contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<script>
</script>
<script src="script.js"></script>
</body>
</html>