forked from 1tsak/serveU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (144 loc) · 5.39 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
</head>
<body>
<section>
<input type="checkbox" id="check">
<!-- Header -->
<header>
</div>
<a href="index.html"><img src="imgs/logo.png"></a>
<div class="navigation">
<a href="index.html">Home</a>
<a href="about_us.html">About</a>
<a href="review.html">Reviews</a>
<a href="services.html">Services</a>
<a href="contact_us.html">Contact</a>
<!-- <a href="login.html">Login</a> -->
</div>
<div class="nav-buttons">
<button onclick="window.location.href='login.html';" type="button"class="login-signup-nav-btn">Login</button>
<button onclick="window.location.href='signup.html';" type="button"class="login-signup-nav-btn">Signup</button></div>
<label for="check">
<i class="fas fa-bars menu-btn"></i>
<i class="fas fa-times close-btn"></i>
</label>
</header>
<!-- Body -->
<div class="content">
<div id="search-service">
<h3 id="search-header-text">Search For Service!</h2>
<div id="search-service-child1">
<div class="select-custom" id="select-area">
<select>
<option value="1">Select Area</option>
<option value="2">Rajpura</option>
<option value="3">Chandigarh</option>
</select>
</div>
<div class="select-custom" id="select-service">
<select>
<option value="1">Select Service</option>
<option value="2">Refuel</option>
<option value="3">Repair</option>
</select>
</div>
<button onclick="window.location.href='list_serv.html';" type="button"id="submit">Submit</button>
</div>
</div>
<div id="best-selling-services">
<p id="head-best-selling-txt">Best Selling!</p>
<div id="best-selling-child1">
<div class="best-service-item">
<div class="best-service-item-child1">
<img src="sample-service-img.png">
<p class="best-sell-item-title">Refuel</p>
<p class="cost-text">₹200</p>
</div>
<i class="arrow right"></i>
</div>
<div class="best-service-item">
<div class="best-service-item-child1">
<img src="repair.png">
<p class="best-sell-item-title">Repair</p>
<p class="cost-text">₹500</p>
</div>
<i class="arrow right"></i>
</div>
<div class="best-service-item">
<div class="best-service-item-child1">
<img src="sample-service-img.png">
<p class="best-sell-item-title">Service</p>
<p class="cost-text">₹800</p>
</div>
<i class="arrow right"></i>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="footer-content">
<div class="footer-section about">
<h1 class="logo-text"><span>Serve</span>U</h1>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nulla in hic eaque vitae aliquid, repellendus, culpa provident maiores delectus adipisci modi ipsum? Aspernatur doloremque autem distinctio provident odit nesciunt maxime.
</p>
<div class="contact">
<span><i class="fas fa-phone"></i> 123-456-789</span>
<span><i class="fas fa-envelope"></i> [email protected]</span>
</div>
<div class="socials">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-section links">
<h2>Quick Links</h2>
<br>
<ul>
<a href="index.html">
<li>Home</li>
</a>
<a href="about_us.html">
<li>About</li>
</a>
<a href="services.html">
<li>Services</li>
</a>
<a href="review.html">
<li>Reviews</li>
</a>
<a href="contact_us.html">
<li>Contact</li>
</a>
</ul>
</div>
<div class="footer-section contact-form">
<h2>Contact us</h2>
<br>
<form action="index.html" method="post">
<input type="email" name="email" class="text-input contact-input" placeholder="Your email address...">
<textarea rows="4" name="message" class="text-input contact-input" placeholder="Your message..."></textarea>
<button type="submit" class="btn btn-big contact-btn">
<i class="fas fa-envelope"></i>
Send
</button>
</form>
</div>
</div>
<div class="footer-bottom">
© example.com | Made With 💖 For IWT Project
</div>
</div>
</section>
</body>
</html>