-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 1.59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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="main.css" />
<title>Responsive Navbar</title>
</head>
<body>
<header class="header">
<div class="wraper">
<div class="logo">
<p>LOGO</p>
</div>
<nav class="navbar">
<ul class="navbar-links">
<li><a href="#" class="active-link">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
<div class="mobil-menu">
<span></span>
<span></span>
<span></span>
</div>
</div>
</header>
<main>
<section class="main-section">
<h1>Hello World</h1>
<p>
<span
>Photo by
<a
href="https://unsplash.com/@tikh?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>Atikh Bana</a
>
on
<a
href="https://unsplash.com/s/photos/fashion?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>Unsplash</a
></span
>
</p>
</section>
<section
style="
background: linear-gradient(
to right,
#00f260,
#0575e6
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
"
></section>
</main>
<script src="main.js"></script>
</body>
</html>