-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (109 loc) · 5.55 KB
/
index.html
File metadata and controls
109 lines (109 loc) · 5.55 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./index.css">
<script src="nav.js" defer></script>
<title>Santi's Taco Joint</title>
</head>
<body>
<div class="container">
<button class="mobile-nav-toggle" aria-expanded="false" data-visible="false">
<svg viewBox="0 0 100 80" width="20" height="20">
<rect width="100" height="20"></rect>
<rect y="30" width="100" height="20"></rect>
<rect y="60" width="100" height="20"></rect>
</svg>
</button>
<menu class="primary-navigation" data-visible="false">
<div class="btn-close">
<svg viewbox="0 0 40 40">
<path class="close-x" d="M 10,10 L 30,30 M 30,10 L 10,30" />
</svg>
</div>
<span class="menu-item"><a href="">Beers</a></span>
<span class="menu-item"><a href="">Tacos</a></span>
<span class="menu-item"><a href="">Wines</a></span>
<span class="menu-item"><a href="">Desserts</a></span>
<span class="menu-item"><a href="">Reservations</a></span>
</menu>
<div class="hero">
<div class="hero-image">
<span class="title">Santi's Taco Joint</span>
<span class="subtitle">Pretty good tacos</span>
</div>
<div class="pricing">
<div class="pricing-item"><span class="pricing-item-price">$1.99</span><span class="pricing-item-item">Tacos</span></div>
<div class="pricing-item"><span class="pricing-item-price">$3.99</span><span class="pricing-item-item">Kombucha</span></div>
</div>
</div>
<div class="products">
<div class="product">
<div class="icon">
🌮
</div>
<span class="item-title">
Tacos</span>
<span class="item-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae, quo.
</span>
</div>
<div class="product">
<div class="icon">
🍺
</div>
<span class="item-title">
Beer
</span>
<span class="item-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae, quo.
</span>
</div>
<div class="product">
<div class="icon">
🍷
</div>
<span class="item-title">
Wine
</span>
<span class="item-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae, quo.
</span>
</div>
<div class="product">
<div class="icon">
🎵
</div>
<span class="item-title">
Music</span>
<span class="item-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae, quo.
</span>
</div>
</div>
<div class="featured-item">
<img src="https://jolly-kalam-23776e.netlify.app/restaurantwebsite/images/queso-taco.png" alt="taco" class="taco-image">
<div class="featured-item-description">
<h2 class="featured-title">Featured Taco</h2>
<p class="featured-paragraph">Slim profile, easy to hold and loaded with cheese. This is the one you have been waiting for</p>
<a href="#" class="featured-button">Learn more </a>
</div>
</div>
<div class="divider"><h2 class="title">Instagram</h2></div>
<div class="instagram">
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x201" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x202" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x203" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x204" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x205" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x206" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x207" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x208" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x209" alt=""></div>
<div class="instagram-image"><img src="https://source.unsplash.com/random/201x210" alt=""></div>
</div>
</div>
</body>
</html>