-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
180 lines (137 loc) · 5.49 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!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>Coffee Website </title>
<link rel="icon" type="image/x-icon" href="image/favicon.png">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="#" class="logo"> coffee <i class="fas fa-mug-hot"></i> </a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="menu.html">menu</a>
<a href="#review">review</a>
<a href="#book">book</a>
</nav>
<a href="#" class="btn">book a table</a>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="row">
<div class="content">
<h3>fresh coffee in the morning</h3>
<a href="#" class="btn">buy one now</a>
</div>
<div class="image">
<img src="image/home-img-1.png" class="main-home-image" alt="">
</div>
</div>
<div class="image-slider">
<img src="image/home-img-1.png" alt="">
<img src="image/home-img-2.png" alt="">
<img src="image/home-img-3.png" alt="">
</div>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"> about us <span>why choose us</span> </h1>
<div class="row">
<div class="image">
<img src="image/about-img.png" alt="">
</div>
<div class="content">
<h3 class="title">What make's our coffee so special!</h3>
<p>Experience the finest coffee in the morning with our fresh and aromatic blends.From smooth and rich to bold and full-bodied, we have a flavor profile to suit every coffee lover's taste. Our commitment to using only the finest, sustainably-grown coffee beans ensures that every sip is bursting with flavor. Start your day off right with a cup of our delicious coffee and experience the difference for yourself.</p>
<a href="#" class="btn">read more</a>
<div class="icons-container">
<div class="icons">h
<img src="image/about-icon-1.png" alt="">
<h3>quality coffee</h3>
</div>
<div class="icons">
<img src="image/about-icon-2.png" alt="">
<h3>our branches</h3>
</div>
<div class="icons">
<img src="image/about-icon-3.png" alt="">
<h3>free delivery</h3>
</div>
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!--booking section starts -->
<section class="book" id="book">
<h1 class="heading"> <span>Book a Table</span> NOW </h1>
<div class="row" id="booking">
<form action="">
<div class="inputBox">
<span class="fas fa-user"></span>
<input type="text" placeholder="name">
</div>
<div class="inputBox">
<span class="fas fa-envelope"></span>
<input type="email" placeholder="email">
</div>
<div class="inputBox">
<span class="fas fa-phone"></span>
<input type="number" placeholder="number">
</div>
<div class="inputBox">
<span class="fas fa-calendar"></span>
DATE:
<input type="date" placeholder="Date">
</div>
<div class="inputBox">
<span class="fas fa-clock"></span>
TIME:
<input type="time" placeholder="Time">
</div>
<div class="inputBox">
<span class="fas fa-users"></span>
How many person will you be with?<br>
<input type="text" placeholder="Ex. 3">
</div>
<div class="inputBox">
<span class="fas fa-pen"></span>
NOTE: <br>
<input type="paragraph" placeholder="comments..">
</div>
<input type="submit" value="Submit" class="btn submitbtn">
</form>
</div>
</section>
<!-- booking section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="share">
<a href="#" class="fab fa-facebook-f sym"></a>
<a href="#" class="fab fa-twitter sym"></a>
<a href="#" class="fab fa-instagram sym"></a>
<a href="#" class="fab fa-linkedin sym"></a>
<a href="#" class="fab fa-pinterest sym"></a>
</div>
<div class="links">
<a href="#home">home |</a>
<a href="#about">about |</a>
<a href="menu.html">menu |</a>
<a href="#">products |</a>
<a href="#book">Book </a>
</div>
<div class="credit">© <script type="text/javascript">var year = new Date();document.write(year.getFullYear());</script> Copyright: <span>@Coffee.com</span> | all rights reserved</div>
</section>
<!-- footer section ends -->