-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsupermeal.html
112 lines (104 loc) · 4.2 KB
/
supermeal.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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>SuperMeals</title>
<link rel="icon" href="logo.jpg" type="image/x-icon" sizes="32X32">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" media="screen and (max-width: 1170px)" href="css/phone.css">
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@600&family=Bree+Serif&family=Kanit:wght@100&display=swap"
rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="logo.jpg" alt="SuperMeal.com">
</div>
<ul>
<li class="item"><a href="#">Get the app</a></li>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#services">Services</a></li>
<li class="item"><a href="#">Log In</a></li>
<li class="item"><a href="#client-section">Our clients</a></li>
</ul>
</nav>
<section id="home">
<h1 class="primary">SuperMeals <br> Discover the best food & drinks</h1>
<!-- <h1 class="primary">Discover the best food & drinks in Pune</h1> -->
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quae quo eius consectetur porro earum!</p>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit.</p>
<button class="btn">Order now</button>
</section>
<section class="services-container">
<h1 class="primary center">Our Services</h1>
<div id="services">
<div class="box">
<img src="dish.jpg" alt="">
<h2 class="h-secondary center">Order Online</h2>
<p class="center">Stay home and order to your doorstep </p>
</div>
<div class="box">
<img src="dining.jpg" alt="">
<h2 class="h-secondary center">Dining Out</h2>
<p class="center">View the city's favourite dining venue</p>
</div>
<div class="box">
<img src="night.jpg" alt="">
<h2 class="h-secondary center">Nightlife & Clubs</h2>
<p class="center">Explore the city's top nightlife outlets</p>
</div>
</div>
</section>
<section id="client-section">
<h1 class="primary center">Our clients</h1>
<div id="clients">
<div class="client-item">
<img src="logo1.png" alt="Our Client">
</div>
<div class="client-item">
<img src="logo2.png" alt="Our Client">
</div>
<div class="client-item">
<img src="logo3.png" alt="Our Client">
</div>
<div class="client-item">
<img src="logo4.png" alt="Our Client">
</div>
<div class="client-item">
<img src="logo5.png" alt="Our Client">
</div>
</div>
</section>
<section id="contact">
<h1 class="primary center">Contact us</h1>
<div id="contact-box">
<form action="">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Enter your Name">
</div>
<div class="form-group">
<label for="name">Email:</label>
<input type="email" name="name" id="email" placeholder="Enter your Email">
</div>
<div class="form-group">
<label for="name">Phone No:</label>
<input type="phone" name="name" id="phone" placeholder="Enter your Phone No.">
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
</form>
</div>
</section>
<footer>
<div class="center">
Copyright © www.SuperMeals.com. All rights reserved!!
</div>
</footer>
</body>
</html>