-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSunshine.html
More file actions
320 lines (285 loc) · 9.97 KB
/
Sunshine.html
File metadata and controls
320 lines (285 loc) · 9.97 KB
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunshine-Product</title>
<!--Copyright 2020,Mayank Laxkar And Kartik Budhraja, All rights reserved.-->
<link rel="stylesheet" href="Sunshine-Grid.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="footercss.css">
<!-- Material Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Great+Vibes&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {
margin: 0;
padding: 0;
}
#intro.option1 {
margin-bottom: 25px;
margin-left: 139px;
margin-right: 91px;
}
#intro.option1 #intro-core {
position: relative;
width: 100%;
display: table;
padding-bottom: 20px;
}
#intro.option1 .page-title {
line-height: 1;
text-transform: uppercase;
margin: 0px;
display: table-cell;
text-align: left;
}
#intro.option1 #intro-core:before {
content: '';
position: absolute;
bottom: 0px;
width: 100%;
border-bottom: 1px solid #EEE;
}
h1 {
font-size: 28px;
}
span {
border: 0;
font-family: inherit;
font-size: 100%;
font-style: inherit;
font-weight: inherit;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
#breadcrumbs {
font-size: 16px;
display: table-cell;
text-align: right;
vertical-align: middle;
}
#intro.option1 #intro-core:after {
content: '';
position: absolute;
left: 0;
bottom: 0px;
width: 140px;
border-bottom: 4px solid #ffda00;
}
#intro-core:after {
clear: both;
display: table;
}
#intro.option1 #intro-core {
position: relative;
width: 100%;
display: table;
padding-bottom: 20px;
}
.section-title {
font-size: 4rem;
font-weight: 300;
color: black;
margin-bottom: 35px;
margin-top: 42px;
text-transform: uppercase;
letter-spacing: .2rem;
text-align: center;
}
span {
border: 0;
font-family: inherit;
font-size: 100%;
font-style: inherit;
font-weight: inherit;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
.section-title span {
color: crimson;
}
h1 {
display: block;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
}
</style>
</head>
<body>
<!-- Navbar start -->
<div class="container">
<nav>
<input type="checkbox" id="nav" class="hidden">
<label for="nav" class="nav-btn">
<i></i>
<i></i>
</label>
<div class="logo">
<a href="index.html#home"><img class="logo-img" src="LOGO123_50x60.png" alt="Logo"></a>
</div>
<div class="nav-wrapper">
<ul>
<li><a href="index.html#home" data-after="Home">Home</a></li>
<li><a href="index.html#services" data-after="Products">Products</a></li>
<li><a href="index.html#brands" data-after="Brands">Brand</a></li>
<li><a href="index.html#about" data-after="About_Us">About Us</a></li>
<li><a href="contactus.html" data-after="Contact_Us">Contact Us</a></li>
</ul>
</div>
</nav>
</div>
<!-- navbar end here -->
<div class="main">
<div id="intro" class="option1">
<div id="intro-core">
<h1 class="page-title"><span>Sunshine</span></h1>
<div id="breadcrumbs">
<div id="breadcrumbs-core">
<a href="index.html">Home</a>
<span class="delimiter"> / </span>Sunshine
</div>
</div>
</div>
</div>
<h1 class="section-title"><span>Pro</span>duct</h1>
<ul class="cards">
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="product-img/oxyfuel_1_541x350.jpg"></div>
<div class="card_content">
<h2 class="card_title">Oxy Fuel Welding & Cutting Equipments</h2>
<ul>
<li>Pressure Regulator</li>
<li>Gas Cutting Torch and Nozzles</li>
<li>Welding Torch</li>
<li>Non Return Valve, Flow Meter, CO2
Heater</li>
<li>Pug Cutting Machine</li>
<li>Welder's goggle, Chipping Hammer and Earth Clamp</li>
<li>Rubber Hose Pipe</li>
</ul>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="product-img/Stick_SMAW_Accessories_541x350.jpg"></div>
<div class="card_content">
<h2 class="card_title">Stick (SMAW) Accessories</h2>
<ul>
<li>Welding Cable</li>
<li>Welding helmet & Hand Screen</li>
<li>Electrode Holder</li>
<li>Electrode Drying Oven</li>
<li>SIlicon Spray & Anti Spatter Gel</li>
</ul>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="product-img/MigGMAWTigSTAW__FluxFCAW_1_541x350.jpg"></div>
<div class="card_content">
<h2 class="card_title">Mig(GMAW),Tig(STAW) & Flux(FCAW)</h2>
<ul>
<li>Tig Welding Torch</li>
<li>Mig Welding Torch</li>
<li>Stainless Steel Tig & Mig Wire</li>
<li>Alluminium Tig & Mig Filler Wire</li>
<li>Mild Steel Tig Wire</li>
<li>Low Alloy Tig Wire</li>
<li>Mild Steel Mig Flux Cored Wire</li>
<li>Stainless Steel Mig Flux Cored Wire</li>
</ul>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="product-img/safety_apron_541x350.jpg"></div>
<div class="card_content">
<h2 class="card_title">Industrial Safety Products</h2>
<ul>
<li>Leather Safety Shoe PU & PVC Sole</li>
<li>Safety Belt</li>
<li>Safety Helmet</li>
<li>Leather Apron, Hand Sleeve & Leg Guard</li>
<li>Safety Jacket</li>
</ul>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="product-img/Weldstrong.png"></div>
<div class="card_content">
<h2 class="card_title">WELDSTRONG</h2>
<ul>
<li>Gas Pressure Regulator</li>
<li>Gas Cutting Torch & Nozzle</li>
<li>Tig Welding Torch (Gas Cooled & Water Cooled)</li>
<li>Safety Shoe</li>
<li>Leather Hand Glove</li>
<li>Mig Machine</li>
<li>Tig Machine & Rectifier</li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<!-- Footer main -->
<footer>
<!-- Footer main -->
<section class="ft-main">
<div class="ft-main-item">
<h2 class="ft-title">J Giri and Sons</h2>
<ul class="address1">
<li><i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/XdPPNQyQrrnXCnZ27">C2 New Siyaganj Mall
Godown Road,Indore(M.P.)</a> </li>
<li><i class="fa fa-envelope"></i><a href="mailto:jgiri.indore@gmail.com">jgiri.indore@gmail.com</a></li>
<li><i class="fa fa-mobile" aria-hidden="true"></i> <a href="tel:+91 9893245925">9893245925 |</a> <a href="tel:+91 0731-2539651">0731-2539651 |</a> <a href="tel:+91 0731-4045925">0731-4045925</a></li>
</ul>
</div>
<div class="ft-main-item">
<h2 class="ft-title">Links</h2>
<ul>
<li><a href="index.html#home" data-after="Home">Home</a></li>
<li><a href="index.html#about" data-after="About Us">About Us</a></li>
<li><a href="index.html#services" data-after="Products">Products</a></li>
<li><a href="index.html#brands" data-after="Brands">Brand</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="ft-main-item">
<h2 class="ft-title">Stay Updated</h2>
<div class="ft-social">
<ul class="ft-social-list">
<li><a class="facebook" href="https://www.facebook.com/jgiri.sonsagencies.3"><i class="fa fa-facebook-square"
style="font-size:24px;"></i></a></li>
<li><a class="insta" href="https://www.instagram.com/jgiri.indore/"><i class="fa fa-instagram"
style="font-size:24px;"></i></a></li>
<li><a class="linkedin" href="https://www.linkedin.com/in/j-giri-sons-agencies-63381b1b4/"><i class="fa fa-linkedin"
style="font-size:24px;"></i></a></li>
<li><a class="whatsapp" href="https://wa.me/919893245925"><i class="fa fa-whatsapp" style="font-size:24px;"></i></a></li>
</ul>
</div>
</div>
</section>
<!-- Footer legal -->
<section class="ft-legal">
<h2 style="text-align: center;"> © 2020 Copyright. Designed and developed by Mayank & Kartik</h2>
</section>
</footer>
<!-- End Footer -->
</body>
</html>