-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday2.html
93 lines (70 loc) · 2.63 KB
/
day2.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
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Day2: CSS | Assignments</title>
<link rel="stylesheet" href="day2.css">
</head>
<body>
<div class="food-card">
<div class="photo-card">
<img class="biryani" src="https://source.unsplash.com/640x425/?biryani" alt="">
<div class="promoted">Promoted</div>
<div class="offer">50% OFF up to 100</div>
<div class="delivery-time">38 min</div>
</div>
<h1>Center Point Restaurant</h1>
<p>North Indian, Chinese</p>
<hr>
<div class="safety">
<p>
<img class="safety-logo" src="https://b.zmtcdn.com/data/o2_assets/e50eb01feab6bd50e50430f34b4645ac1613542991.png" alt="">
Follows all Max Safety measures to ensure your food is safe
</p>
</div>
</div>
<div class="bg-img">
<div class="bali">
<img class="blai-img" src="https://source.unsplash.com/640x425/?bali" alt="bali">
</div>
<div class="content">
<h1>Explore the diversities in Bali</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Beatae debitis, ad nulla deleniti mollitia provident! Vel, suscipit voluptas!</p>
<button class="explore-btn"> Explore Now</button>
</div>
</div>
<div class="zomato-container">
<div class="zomato">
<div class="bg-zomato">
<img src="https://b.zmtcdn.com/web_assets/81f3ff974d82520780078ba1cfbd453a1583259680.png" alt="">
<div class="content-container">
<div class="logo">
<img src="https://b.zmtcdn.com/web_assets/8313a97515fcb0447d2d77c276532a511583262271.png" alt="">
</div>
<div class="heading">
<p>Discover the best food and drinks in Lucknow</p>
</div>
<!-- Input Box -->
<input class="input" type="text" placeholder="Search the restaurant cuisine or a dish">
</div>
</div>
</div>
</div>
<div class="linkedin-card">
<div class="profile">
<img src="https://media.licdn.com/dms/image/D4D16AQF6T0Zv_zs5gA/profile-displaybackgroundimage-shrink_350_1400/0/1657461792065?e=1720051200&v=beta&t=ZIk22vXqCya30ohDDOJewIaEH-CqkjXRJmILFS5VJnU" alt="">
</div>
<div class="display">
<img src="https://media.licdn.com/dms/image/C4D03AQEscqaDc0E1HA/profile-displayphoto-shrink_200_200/0/1657459612975?e=1720051200&v=beta&t=jN9UofWVOZAWu5sqhi7DQFhq_ovsT2lCfzZ9DzMMhNI" alt="">
</div>
<div class="linkedin-content">
<h1>Manish Kumar</h1>
<p>Founder & CEO at Codekaro</p>
</div>
</div>
<a href="https://github.com/manish-jsx/CSS-Workshop" target="_blank" class="github-link">
<img src="github.svg" alt="GitHub Repository" class="github-logo">
</a>
</body>
</html>