-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·364 lines (344 loc) · 11.2 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
<html>
<head>
<title>Lintel</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<script src="bootstrap/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript">
var timer = 2000;
var clickCounter = 0;
var remTimer;
function slowscroll(myid) {
var target = $(myid);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
function setupdateTimer() {
if ( clickCounter == 0 ) {
remTimer = setTimeout(validateTimer, timer);
clickCounter = clickCounter + 1 ;
}
else if ( clickCounter < 5 ) {
clickCounter = clickCounter + 1 ;
}
else {
clearTimeout(remTimer);
clickCounter = 0;
window.location.assign('lintelimage.html');
}
}
function validateTimer() {
clickCounter = 0;
}
</script>
<script>
$(function(){
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<style>
body {
margin:0;
}
h1 {
color: Red;
font-weight: bold;
font-style: italic;
margin-left : 40px;
margin-right : 40px;
}
.paragraph {
font-size : 20px;
margin-left : 40px;
margin-right : 40px;
}
div.fristpage {
background-image: url('Images/background1.jpg');
background-repeat: no-repeat;
background-position: center center;
border: 1px solid;
width: 100%;
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
div.bottomfrontredweave {
position: absolute;
bottom: 0px;
}
div.bottomquote {
position: absolute;
cursor: pointer;
right: 10px;
bottom: 15px;
}
.navbar {
overflow: hidden;
background-color: #EE1B24;
}
.navbar a.home {
float: left;
display: block;
color: #ffffff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a.home:hover {
background-color: #ffe6e6;
color: #EE1B24;
}
div.menuspan {
width: 25px;
height: 2px;
background-color: white;
margin: 3px 0;
}
button:hover {
background-color: #ffe6e6;
}
.circle{
position:absolute;
top: 93%;
left: 50%;
transform: translate( -50% , -50% );
cursor: pointer;
width: 80px;
height: 80px;
text-align: center;
line-height: 110px;
font-size: 60px;
color: #d9d9d9;
overflow: hidden;
}
.circle .fa {
color: #d9d9d9;
margin: 0;
padding: 0;
animation: animate 1s linear infinite;
}
@keyframes animate{
0%{
transform: translatey(-50px);
text-shadow: 0 50px 0 #d9d9d9;
}
20%{
transform: translatey(0px);
text-shadow: 0 10px 0 #d9d9d9;
}
60%{
transform: translatey(0px);
text-shadow: 0 0px 0 #d9d9d9;
}
100%{
transform: translatey(100px);
text-shadow: 0 -50px 0 #d9d9d9;
}
}
@keyframes fadeAndScale {
from {
opacity: 0;
transform: scale(0, 0);
}
to {
opacity: 10;
transform: scale(1, 1);
}
}
img.logo {
animation-duration: 1.5s;
animation-name: fadeAndScale;
animation-timing-function: cubic-bezier(0,0,.58,1);
margin-left : 5px;
margin-top : 45px;
}
.nav .anchorbutton {
border: #EE1B24;
text-align: center;
float: right;
display: block;
color: #ffffff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 100%;
background-color: #EE1B24;
}
.nav .anchorbutton:hover {
color: #EE1B24;
background-color: #ffe6e6;
}
.nav .anchorbutton:focus {
color: #EE1B24;
background-color: #ffe6e6;
outline:none !important
}
table {
border: 2px solid #EE1B24;
padding: 15px;
}
td {
border: 1px solid #EE1B24;
text-align: center;
padding: 15px;
font-size : 20px;
}
th {
border: 1px solid #EE1B24;
text-align: center;
padding: 15px;
font-size : 20px;
background-color : #EE1B24;
color: #ffe6e6;
}
tr:hover {
background-color : #ffe6e6;
}
</style>
</head>
<body onload='window.location.href="#HomePage";'>
<div class="fristpage" id="HomePage">
<div class="navbar navbar-fixed-top">
<div class="container" id="sidebar" >
<div id="inside" ><a class="home" href="#HomePage"><b><span class="glyphicon glyphicon-home"></span> Home</b></a> </div>
<button class="navbar-toggle" data-toggle="collapse" data-target="#navHeaderCollapse">
<div class="menuspan"></div>
<div class="menuspan"></div>
<div class="menuspan"></div>
</button>
<div class="collapse navbar-collapse" id="navHeaderCollapse" >
<u1 class="nav navbar-nav">
<li><button class="anchorbutton" data-toggle="collapse" data-target="#navHeaderCollapse" onclick="slowscroll('#about')"><b><span class="glyphicon glyphicon-user"></span> About</b></button></li>
<li><button class="anchorbutton" data-toggle="collapse" data-target="#navHeaderCollapse" onclick="slowscroll('#Types')"><b><span class="glyphicon glyphicon-th"></span> Types</b></button></li>
<li><button class="anchorbutton" data-toggle="collapse" data-target="#navHeaderCollapse" onclick="slowscroll('#Gallery')"><b><span class="glyphicon glyphicon-film"></span> Gallery</b></button></li>
<li><button class="anchorbutton" data-toggle="collapse" data-target="#navHeaderCollapse" onclick="slowscroll('#Feedback')"><b><span class="glyphicon glyphicon-envelope"></span> Contact Us</b></button></li>
</u1>
</div>
</div>
</div>
<img class="logo img-responsive" src="Images/logo.jpg" onclick="setupdateTimer();">
<div class="bottomfrontredweave">
<div class="bottomquote" onclick=slowscroll('#Features')>
<b><i><font color="black">
"The Doors we open and close each day<br>
decide the lives we live."<br>
</font></i></b>
</div>
<div class="circle" onclick="slowscroll('#about')">
<i class="fa fa-angle-down" aria-hidden="true"> </i>
</div>
<img class="img-responsive" src="Images/wavered.png" width="90%">
</div>
</div>
<div>
<section id="about">
<br><br><br>
<h1>About uPVC Windows</h1>
<p class="paragraph"> uPVC is a eco-friendly material obtained by polymerization of vinyl chloride. uPVC is widely used in doors and windows manufacturing since 4 decades worldwide. uPVC is a relatively new product to Indian subcontinent. The insulation property of uPVC makes the material idle for windows and doors in a tropical country like India.</p>
<br><br><br>
<h1>Lintel</h1>
<p class="paragraph"> Lintel Building Solutions is a provider of the modern uPVC windows and doors together with the complete solutions within the field of building materials, both for the new constructions and renovation activities.<br/>
<br/>
Our primary expertise is designing, fabrication and installation of windows and doors. In addition we provide installation of facades and cladding. Together with a good infrastructure, qualified and enthusiastic team, we will offer you quality products, flawless sales transactions, and service with utmost care and ease. We are dedicated to provide quality and customer satisfaction through our work and services.
<br/>
<br/>
Our presence in Hubli will make it easy for you to reach us and to provide you the faster service and support.
</p>
</section>
</div>
<div>
<section id="Features">
<br><br><br>
<H1>Features of uPVC </H1>
<ul class="paragraph">
<li> uPVC Windows is U.V. Stabilized</li>
<li> It's Aesthetic and durable</li>
<li> All corners and mullions are fusion welded 100% dust proof due to double protection by EPDM Gaskets</li>
<li> Steel reinforcement provides structural strength for wind-load resistance and for holding hardwares</li>
<li> Multiple chamber system design enhances heat and sound insulation properties.</li>
<li> Security with excellent hardware like multipoint lock, butt-hinges, handles etc.</li>
<li> Eco-friendly and energy saving can withstand high wind pressure, fire retardant, resistance to weather, termite, chemical and high impact.</li>
<li> Maintenance free / No painting</li>
<li> Strength and durability helps to retain its original shape and form for years</li>
<li> Availability in colors of choice, patterns and laminates.</li>
</ul>
</section>
</div>
<div >
<br><br><br>
<h1> Why uPVC Over Aluminium Windows?</h1><br><br>
<table align="center" style=" margin-left:5%; margin-right:5%;">
<tr><th>Normal Windows</th><th>uPVC Windows</th></tr>
<tr>
<td>Poor Insulator</td>
<td>Excellent Insulator</td>
</tr>
<tr>
<td>Allows condensation to form pits, corrodes, dents and scratches</td>
<td> Reduces air infiltration and will not shrink or wrap</td>
</tr>
<tr>
<td>Most frames and sash are usually faster with screws that may loosen</td>
<td> Durable, no pitting, peeling, rotting and corroding.</td>
</tr>
<tr>
<td>Painted windows may chip and scratch</td>
<td>Easy to clean, low maintenance, ease of operation, custom size opening</td>
</tr>
</table>
</div>
<section id="Gallery">
<br><br><br>
<h1>Lintel Gallery <span class="glyphicon glyphicon-film"></span></h1>
<div class="container-fluid" style=" margin-left:5%; margin-right:5%; padding:0px">
<iframe src="display.php" width="100%" height="80%" frameborder="0"></iframe>
</div>
</section>
<br><br><br>
<section id="Feedback">
<h1>Contact Us</h1>
<div class="container" >
<div class="row">
<div class="col-lg-5"><img class="logo img-responsive" src="Images/logo.jpg"></div>
<div class="col-lg-2"></div>
<div class="col-lg-5">
<h1>Office :</h1>
<p class="paragraph">
<span class="glyphicon glyphicon-map-marker"></span> #3 Galaxy Apartment, Vasavi Nagar, behind New Bustand, Gokul Road, Hubli - 580 024<br>
<span class="glyphicon glyphicon-map-marker"></span> Hulagol Chawl, Hospet Road, Sirsi - 581 401<br>
</p>
<h1>Factory :</h1>
<p class="paragraph">
<span class="glyphicon glyphicon-map-marker"></span> Industrial Estate, Banavasi Road, Sirsi - 581 401<br>
<span class="glyphicon glyphicon-phone"></span> +91 91647 01702<br>
<span class="glyphicon glyphicon-phone"></span> +91 94807 32263<br>
<span class="glyphicon glyphicon-envelope"></span> [email protected]<br>
</p>
</div>
</div>
</div>
</section>
</body>
</html>