-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
303 lines (296 loc) · 9.72 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<html>
<head>
<title>AmpedUP Supplies</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header{
display: flex;
align-items: center;
justify-content: space-between;
height: 90px;
background-color: black;
color: white;
}
.logo{
width: 200px;
height: auto;
margin-left: 20px;
}
.navbar{
margin-right: 20px;
}
.btn{
margin-left: 10px;
padding: 8px 16px;
background-color: transparent;
color: white;
border: 2px solid aquamarine;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.btn:hover{
background-color: aquamarine;
color: black;
transition: background-color 0.3s ease-in-out;
}
.ad-img{
background-color: black;
padding: 20px;
}
.ad{
width: 100%;
}
.product{
padding: 10px;
text-align: center;
font-size: 40px;
font-weight: 600;
}
.product-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.product-item{
flex: 0 0 calc(25% - 40px);
max-width: calc(25% - 40px);
}
.product-item img{
max-height: 100%;
width: auto;
}
.product-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.product-item{
display: flex;
flex-direction: column;
align-items: center;
flex: 0 0 calc(25% - 40px);
max-width: calc(25% - 40px);
border: 2px solid black;
border-radius: 12px;
padding: 10px;
}
.btn1{
margin-top: 10px;
padding: 10px 18px;
background-color: aquamarine;
color: black;
border: 2px solid aquamarine;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.btn1:hover{
background-color: transparent;
color: aquamarine;
transition: background-color 0.3s ease-in-out;
}
.btn2{
margin-top: 10px;
padding: 8px 16px;
background-color: aquamarine;
color: black;
border: 2px solid aquamarine;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.btn2:hover{
background-color: transparent;
color: aquamarine;
transition: background-color 0.3s ease-in-out;
}
.contactform{
display: flex;
align-items: center;
justify-content: space-between;
height: 600px;
background-color: black;
color: white;
}
.productname{
text-align: center;
font-size: 20px;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
font-size: 16px;
color: #000000;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
}
input[type="submit"]{
background-color: aquamarine;
position: relative;
left: 300px;
width: 50%;
color: #000;
border: 2px solid aquamarine;
border-radius: 5px;
padding: 6px 12px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
input[type="submit"]:hover{
background-color: transparent;
color: aquamarine;
}
.footer{
background-color: black;
color: #fff;
padding: 20px;
text-align: center;
}
.footer-links{
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 10px;
}
.footer-links a{
color: #fff;
margin: 0 10px;
text-decoration: none;
}
.footer-links a:hover{
text-decoration: underline;
}
.footer-contact{
margin-top: 20px;
font-size: 14px;
}
.p1{
color: aquamarine;
}
</style>
</head>
<body>
<header class="header">
<img class="logo" src="logo.png" alt="Logo">
<nav class="navbar">
<a href="#about">
<button class="btn">About</button></a>
<a href="#contactform">
<button class="btn">Contact</button></a>
</nav>
</header>
<div class="ad-img">
<img class="ad" src="adv.png" alt="ad">
</div>
<br>
<section class="flagship">
<div id="about" class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center">
<h1 class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900">"AmpedUp"
<br class="hidden lg:inline-block">Energize Your Life with Cutting-Edge Battery
Inverters and Power Solutions!
</h1>
<p class="mb-8 leading-relaxed">"AmpedUp Supplies" is your go-to destination for energizing your life with cutting-edge battery, inverter, and power solutions.
With our top-notch products and innovative technology, you can stay powered up and ready to tackle any challenge. Whether you need reliable batteries for your devices, powerful inverters for backup power, or comprehensive power solutions for your business, we've got you covered.
Let us fuel your life with the energy you need and the quality you deserve. Choose AmpedUp Supplies and stay one step ahead with the power of the future!</p>
<div class="flex justify-center">
<a href="#product">
<button class="btn2">View Products</button></a>
</div>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6">
<img class="object-cover object-center rounded" alt="hero" src="flagshipimg.png">
</div>
</div>
</section>
<br><br><br>
<hr>
<br>
<section>
<div id="product" class="product">Our Product</div>
<br><br>
<div class="product-container">
<div class="product-item">
<img src="UPSandINVERTER.png" alt="product1">
<br>
<h1 class="productname">UPS & INVERTER</h1>
<br>
<a href="product1.html">
<button class="btn1">Buy Now</button></a>
</div>
<div class="product-item">
<img src="battery.png" alt="product2">
<br>
<h1 class="productname">BATTERIES</h1>
<br>
<a href="product2.html">
<button class="btn1">Buy Now</button></a>
</div>
<div class="product-item">
<img src="inverterbatterycombo.png" alt="product3">
<br>
<h1 class="productname">INVERTER & BATTERY COMBO</h1>
<br>
<a href="product3.html">
<button class="btn1">Buy Now</button></a>
</div>
<div class="product-item">
<img src="accessories.png" alt="product4">
<br>
<h1 class="productname">ACCESSORIES</h1>
<br>
<a href="product4.html">
<button class="btn1">Buy Now</button></a>
</div>
</div>
<br><br>
</section>
<br><br><br>
<section>
<div id="contactform" class="contactform bg-black text-white py-20 px-4 md:flex md:items-center">
<img class="logo w-48 h-auto md:mr-20 md:mb-0 mb-10" src="logo.png" alt="Logo">
<div class="md:flex-grow">
<h2 class="text-3xl font-bold mb-8">Contact Us</h2>
<form action="process_form.php" method="POST" class="grid grid-cols-1 md:grid-cols-2 gap-6">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<input type="submit" value="Submit" class="btn2 col-span-2">
</form>
</div>
</section>
<footer class="footer">
<div class="footer-links">
<a href="#">Home</a>
<a href="#about">About</a>
<a href="#product">Products</a>
<a href="#contactform">Contact</a>
</div>
<div class="footer-contact">
<p>Contact us at: +91-92111132444</p>
<p> S-11, Gali No 3, Okhla Phase III, New Delhi, India
</p>
</div>
<p class="p1">© 2023 AmpedUp Supplies. All rights reserved.</p>
</footer>
</div>
</body>
</html>