-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
96 lines (79 loc) · 2.52 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
<!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>Home</title>
<!-- 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="css/style.css" />
<link rel="shortcut icon" href="images/logo.png" type="image/x-icon">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="index.html" class="logo">
<span><img src="images/logo.png" alt="Logo" />Healthy Quench </span>
</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="html/about.html">About Us</a>
<a href="html/products.html">Products</a>
<a href="html/review.html">Review</a>
<a href="html/feedback.html">Feedback</a>
<a href="html/contact.html">Contact Us</a>
<a href="html/blogs.html">Blogs</a>
</nav>
<div class="icons">
<div class="fas fa-shopping-cart" id="cart-btn"></div>
<div class="fas fa-bars" id="menu-btn"></div>
</div>
<div class="search-form">
<input type="search" id="search-box" placeholder="search here..." />
<label for="search-box" class="fas fa-search"></label>
</div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>Fresh Drink in the Morning !</h3>
<p>
We at Healthy Quench Drinks serve Fresh and purely Natural Drinks and
it is very ideal to start your day by taking a Drink or two. It will
certainly boost your mood for the entire day. It also helps in
improving mental and physical health as well.
</p>
<a href="html/products.html" class="btn">Get Yours Now</a>
</div>
</section>
<!-- home section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="credit">
Created by
<span
><a href="https://www.linkedin.com/in/smitsakariya/" target="_blank"
>Smit Sakariya</a
>,
<a href="https://www.linkedin.com/in/dhruvil-soni/" target="_blank"
>Dhruvil Soni</a
>
and
<a href="https://www.linkedin.com/in/dhruvilcodes/" target="_blank"
>Dhruvil Shah</a
>
</span>
| All Rights Reserved
</div>
</section>
<!-- footer section ends -->
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>