-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (77 loc) · 3.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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">
<title>Restaran Website</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="nav">
<a class="a1" href="">tacos</a>
<a class="a2" href="">beers</a>
<a class="a3" href="">wines</a>
<a class="a4" href="">dessert</a>
<a class="a5" href="">reservation</a>
</div>
<div class="sadebar">
<div class="goodImg">
<h1>Akhror's Taco Joint</h1>
<span>Pretty Good Tacos!</span>
</div>
<div class="price1">
<span class="number">$1.99</span>
<p>Tacos</p>
</div>
<div class="price2">
<span class="number">$3.99</span>
<p>Kombucha</p>
</div>
</div>
<div class="boxes">
<div class="">
<img src="images/taco.svg" alt="tacos image">
<h3>Tacos</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis, aperiam!</p>
</div>
<div class="">
<img src="images/beer.svg" alt="beers image">
<h3>Beers</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eligendi, facilis.</p>
</div>
<div class="">
<img src="images/wine.svg" alt="wine image">
<h3>Wine</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Odio, quaerat.</p>
</div>
<div class="">
<img src="images/music.svg" alt="music image">
<h3>Music</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit, quasi.</p>
</div>
</div>
<div class="ads">
<img src="images/taco-image.png" alt="taco image">
<div class="ads-text">
<h2>Featured Taco</h2>
<p>Slim Profile, easy to hold and loaded with cheese.</p>
<p>This is the one you have been waiting for</p>
<a href="">Learn More →</a>
</div>
</div>
<div class="galerey">
<h2>Instant Grams</h2>
<div class="galereyImg">
<img src="https://source.unsplash.com/random/203x203" alt="">
<img src="https://source.unsplash.com/random/204x204" alt="">
<img src="https://source.unsplash.com/random/205x205" alt="">
<img src="https://source.unsplash.com/random/206x206" alt="">
<img src="https://source.unsplash.com/random/207x207" alt="">
<img src="https://source.unsplash.com/random/208x208" alt="">
</div>
</div>
</div>
</body>
</html>