-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (70 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="hero">
<div class="nav-bar">
<div class="nav-logo">
<img src="logo.jpg" height="60" width="60">
</div>
<div class="nav-links" id="nav-links">
<i class="fa fa-close" onclick="closeMenu()" ></i>
<ul>
<a href="">
<li>HOME </li>
</a>
<a href="">
<li> ABOUT</li>
</a>
<a href="">
<li>RECIPE </li>
</a>
</ul>
<button type="button" class="btn">SIGN UP</button>
</div>
<i class="fa fa-bars" onclick="showMenu()" ></i>
</div>
<div class="banner-title">
<h1>Food<span> doesn't have<br> a religion.</span> It is a religion.</h1>
<button type="button" class="btn">EXPLORE</button>
</div>
<div class="vertical-bar">
<div class="search-icon">
<i class="fa fa-th-list" ></i>
<i class="fa fa-search" ></i>
</div>
<div class="social-icon">
<i class="fa fa-facebook" ></i>
<i class="fa fa-instagram" ></i>
<i class="fa fa-twitter" ></i>
<i class="fa fa-pinterest" ></i>
</div>
</div>
<div class="notifications">
<div class="contents">
<small>Subscribe easy youtube channel and never miss any updates.
</small>
<p><a href="">PREV</a><a href="">NEXT</a></p>
</div>
<div class="notifications-img">
<img src="notification-image.jpg" >
</div>
</div>
</div>
<script>
var show = document.getElementById("nav-links");
function showMenu(){
show.style.right="0";
}
function closeMenu(){
show.style.right="-200px";
}
</script>
</body>
</html>