-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
370 lines (329 loc) · 12.4 KB
/
Copy pathindex.html
File metadata and controls
370 lines (329 loc) · 12.4 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
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
365
366
367
368
369
370
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Responsive Design Demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css" />
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
margin: 0;
padding: 0;
height: 100%;
}
.navbar {
background-color: #292780;
}
.navbar-brand img {
max-width: 100px;
}
.nav-link {
color: white;
text-decoration: none;
}
.nav-link:hover {
color: #FFCB05;
}
.nav-link.active {
color: #FFCB05;
}
.background-section {
position: relative;
background-image: url('modern-architecture-reflects-illuminated-swimming-pool-dusk-generated-by-artificial-intelligence 1.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 639px;
}
.background-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.background-content {
position: relative;
z-index: 2;
color: white;
text-align: center;
padding: 100px 20px;
}
.text-overlay {
position: absolute;
bottom: 10px;
left: 10px;
color: white;
background-color: rgba(0, 0, 0, 0.6);
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
max-width: 90%;
font-size: 16px;
}
.play-button {
background: #FFCB05;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 24px;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.carousel-item img {
width: 100%;
height: auto;
}
.column {
padding: 10px;
box-sizing: border-box;
}
@media (min-width: 576px) {
.column {
width: 50%;
float: left;
}
}
@media (max-width: 768px) {
.navbar-brand img {
max-width: 55px;
}
.navbar {
height: auto;
}
.nav-links {
flex-direction: column;
text-align: center;
}
.nav-link {
padding: 10px;
}
.background-section {
height: auto;
background-size: cover;
}
.background-content {
padding: 50px 10px;
}
}
@media (max-width: 992px) {
.text-overlay {
font-size: 14px;
}
.play-button {
width: 40px;
height: 40px;
font-size: 20px;
}
}
@media (max-width: 1200px) {
.background-content {
padding: 80px 20px;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a href="index.html" class="navbar-brand">
<img src="New white logo 1.png" alt="Primary logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="navbar-nav ms-auto nav-links">
<a href="#about" class="nav-link" style="color: #FFCB05;">About the contest</a>
<a href="#submit" class="nav-link">Submit your story</a>
<a href="#stories" class="nav-link">Stories so far</a>
<a href="#terms" class="nav-link">Terms and Conditions</a>
</div>
</div>
</div>
</nav>
<div class="background-section">
<div class="background-overlay"></div>
<div class="background-content">
<img src="Making Consumer Smile-02 1.png" alt="Making Consumer Smile" class="img-fluid">
<div class="text mt-4">
For Tata Tiscon stakeholders who have gone an extra mile to make consumers smile
</div>
<div class="d-flex justify-content-center mt-4">
<button type="button" class="border border-white text-white bg-transparent mx-2">STORIES SO FAR</button>
<button type="button" class="btn btn-warning mx-2" style="background-color: #FFCB05; color: #0a2393;">PARTICIPATE NOW</button>
</div>
</div>
</div>
<div class="bg-white text-center my-5">
<p style="font-weight: bold; font-size: 34px;">
<span style="color: #0a2393;">SUBMIT YOUR</span>
<span style="color: #FFCB05;">STORY</span>
</p>
<span style="font-size: 20px; font-family: Arial, Helvetica, sans-serif;">
You can now buy Tata Tiscon 550SD products online on Tata Steel Aashiyana. But that’s not all! With Tata Steel Aashiyana, you get access to total home building support under one roof. From a detailed home building
</span><br>
<div class="pt-4">
<button class="btn btn-warning mx-2" style="background-color: #FFCB05; color: #0a2393;">RECORD YOUR VIDEO</button> OR
<button class="btn btn-secondary mx-2" style="width: 200px;">UPLOAD YOUR VIDEO</button> OR
<button class="btn btn-warning mx-2" style="background-color: #FFCB05; color: #0a2393;">WRITE YOUR STORY</button>
<p style="font-weight: bold; font-size: 34px; color: #0a2393; margin-top: 4%;">BE THE HERO OF YOUR OWN STORY!</p>
</div>
</div>
<div class="bg-blue text-center py-5">
<p style="font-weight: bold; font-size: 34px;">
<span style="color: #0a2393;">STORIES</span>
<span style="color: #FFCB05;"> SO FAR</span>
</p>
<div class="d-flex justify-content-center gap-2 mb-4">
<span style="text-decoration: underline;">VIDEOS</span>
<span>DIGITAL BOOK</span>
</div>
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="d-flex justify-content-center">
<div class="position-relative">
<img src="cousel.png" alt="Image 1" class="img-fluid">
</div>
<div class="position-relative">
<img src="cousel.png" alt="Image 2" class="img-fluid">
<button class="play-button">
<i class="fa fa-play"></i>
</button>
<div class="text-overlay">
<b>Sandip Mandal</b><br>
1245, Sunrise Apt, Chack Garia, Kolkata - 700094
</div>
</div>
<div class="position-relative">
<img src="cousel.png" alt="Image 3" class="img-fluid">
</div>
</div>
</div>
<!-- Add more carousel items here -->
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div class="bg-white text-center">
<div class="bg-white text-center py-5">
<p style="font-size: 36px; font-weight: bold; color: #0a2393;">
<span style="color: #FFC107;">Tata Steel</span> Terms & Conditions
</p>
<p style="font-size: 18px; color: #666;">
Please read these terms and conditions carefully before using our services.
</p>
</div>
<div class="container mt-5">
<div class="row">
<!-- Column 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class="card shadow-sm border-light rounded">
<div class="card-header bg-primary text-white">
<h5 class="mb-0">Introduction</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>Welcome to Tata Steel! By using our services, you agree to these terms and conditions.</li>
<li>These terms apply to all users of our website, services, and products.</li>
<li>All users must read and agree to these terms before using our services.</li>
</ul>
</div>
</div>
<div class="card shadow-sm border-light rounded mt-4">
<div class="card-header bg-primary text-white">
<h5 class="mb-0">Privacy Policy</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>We respect your privacy and are committed to protecting your personal data.</li>
<li>Personal information is collected for processing orders and providing services.</li>
<li>Your information will never be shared without your consent.</li>
</ul>
</div>
</div>
</div>
<!-- Column 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class="card shadow-sm border-light rounded">
<div class="card-header bg-primary text-white">
<h5 class="mb-0">Account Responsibility</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>You are responsible for maintaining the confidentiality of your account information.</li>
<li>Any activities conducted with your account are your responsibility.</li>
<li>If you notice any suspicious activity, report it immediately.</li>
</ul>
</div>
</div>
<div class="card shadow-sm border-light rounded mt-4">
<div class="card-header bg-primary text-white">
<h5 class="mb-0">Payment Terms</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>All payments must be made in full prior to the delivery of services.</li>
<li>We accept credit/debit cards, bank transfers, and other online payment methods.</li>
<li>Late payments may incur fees or suspension of services.</li>
</ul>
</div>
</div>
</div>
<!-- Column 3 -->
<div class="col-lg-4 mb-4">
<div class="card shadow-sm border-light rounded">
<div class="card-header bg-primary text-white">
<h5 class="mb-0">Use of Services</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>Our services are for lawful purposes only.</li>
<li>We reserve the right to suspend or terminate your access if these terms are violated.</li>
<li>Unauthorized use of our services is prohibited.</li>
</ul>
</div>
</div>
<div class="card shadow-sm border-light rounded mt-4">
<div class="card-header bg-primary text-white">
<h5 class="mb-0">Limitation of Liability</h5>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li>We are not liable for any damages resulting from the use of our services.</li>
<li>We are not responsible for third-party services or websites linked to ours.</li>
<li>Your sole remedy in case of dissatisfaction is to discontinue use of the services.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
</body>
</html>