-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (73 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZOMATO(Food Deleivery app)</title>
<link rel="stylesheet" href="./gridpage1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="icon" href="./ZOMATO-LOGO.png" type="image/x-icon">
</head>
<body>
<div class="whole">
<div id="login-account">
<div id="log-in">Log in</div>
<div id="account">create an account</div>
</div>
<div id="logo">
<img src="./ZOMATO-SQUARE.png" id="logo-img"/>
</div>
<div id="text">
Find the best restaurants, cafés, and bars in Los Angeles
</div>
<div id="middle">
<div id="container1"><i class="fa-solid fa-location-arrow" style="font-size: 20px;"></i>
<p class="los-angeles">Los Angeles</p>
<i class="fa-solid fa-caret-down" style="font-size:20px;"></i>
</div>
<div id="container2">
<i id="search-icon" class="fa-solid fa-magnifying-glass"></i>
<input type="text" class="name" placeholder="search for restaurants or cuisines. . .">
</div>
<div class="search"><span>Search</span></div>
</div>
</div>
<div id="collections"><h1 >collections</h1>
<p id="para">Explore curated lists of top restaurants, cafes, pubs, and bars in Los Angeles, based on trends
</p>
</div>
<div id="whole2">
<div id="grid-images">
<div class="grid1">
<div class="box1"><img src="./grid-1.jpg" class="img1" /></div>
<div class="text1"> <h1>Trending This Week</h1><p>Most popular restaurants in town this week</p></div>
</div>
<div class="grid2">
<div class="box2"><img src="./grid-2.jpg" class="img2"/></div>
<div class="text2"><h1>Gluten-free</h1><p>Places serving the best gluten-free food</p> </div>
</div>
<div class="grid3">
<div class="box3"><img src="./grid-3.jpg" class="img3"/></div>
<div class="text3"><h1>Truckin' awesome</h1>
<p>Find the best places for a little meals on wheels action</p></div>
</div>
<div class="grid4">
<div class="box4">
<img src="./grid-4.jpg" class="img4"/></div>
<div class="text4"><h1>Artisan Cocktails</h1>
<p>Inebriation is fine, but it's fun to do it in style once in a while</p> </div>
</div>
<div class="grid5">
<div class="box5">
<img src="./grid-5.jpg" class="img5"/></div>
<div class="text5"> <h1>Kickass Burgers</h1>
<p>Feast on these awesome cheeselicious burgers around you</p></div>
</div>
<div class="grid6">
<div class="box6"><img src="./grid-6.jpg" class="img6"/></div>
</div>
</div>
</div>
</div>
</body>
</html>