-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
464 lines (391 loc) · 24.5 KB
/
index.html
File metadata and controls
464 lines (391 loc) · 24.5 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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Web Page</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="w-full bg-white-a700">
<div
class="max-w-7xl w-full mb-8 mx-auto px-6 py-2 lg:w-full lg:gap-[7.13rem] md:w-full md:gap-[5.31rem] sm:gap-[3.56rem] bg-[#F6F8FB]">
<!-- Header -->
<header class="flex justify-between items-center pb-14">
<!-- Logo -->
<img src="/assets/img_header_logo.png" alt="Header Logo" class="h-10">
<!-- Navigation for Desktop -->
<nav class="hidden md:flex space-x-6">
<a href="/index.html" class="text-gray-700 hover:text-[#8D448B]">Home</a>
<div class="relative group">
<a href="#" class="text-gray-700 hover:text-[#8D448B] flex items-center gap-1">Advertise
<span>▼</span></a>
<ul class="absolute left-0 hidden bg-white shadow-md group-hover:block mt-2 w-40">
<li><a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Option 1</a></li>
<li><a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Option 2</a></li>
<li><a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Option 3</a></li>
</ul>
</div>
<div class="relative group">
<a href="#" class="text-gray-700 hover:text-[#8D448B] flex items-center gap-1">Support
<span>▼</span></a>
<ul class="absolute left-0 hidden bg-white shadow-md group-hover:block mt-2 w-40">
<li><a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">FAQ</a></li>
<li><a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Contact Support</a>
</li>
<li><a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Live Chat</a></li>
</ul>
</div>
<a href="/Contact.html" class="text-gray-700 hover:text-[#8D448B]">Contact</a>
<a href="#" class="text-gray-700 hover:text-[#8D448B]">About Us</a>
</nav>
<!-- Register Button for Desktop -->
<button
class="hidden md:block px-5 py-2 border-2 border-[#8D448B] text-[#8D448B] font-bold hover:bg-[#8D448B] hover:text-white">
Register Now
</button>
<!-- Hamburger Menu Button for Mobile -->
<button id="menu-toggle" class="md:hidden focus:outline-none">
<svg class="w-8 h-8 text-gray-700" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
<!-- Mobile Menu (Hidden by default) -->
<div id="mobile-menu"
class="fixed inset-0 bg-white transform translate-x-full transition-transform duration-300 md:hidden flex flex-col items-center space-y-6 pt-20 shadow-lg">
<button id="close-menu" class="absolute top-5 right-5">
<svg class="w-8 h-8 text-gray-700" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12"></path>
</svg>
</button>
<a href="/Home.html" class="text-gray-700 text-lg hover:text-[#8D448B]">Home</a>
<!-- Mobile Advertise Dropdown -->
<div class="w-full text-center">
<button id="advertise-toggle"
class="w-full text-gray-700 text-lg hover:text-[#8D448B] flex justify-center items-center gap-1">
Advertise <span>▼</span>
</button>
<div id="advertise-menu" class="hidden flex flex-col space-y-2 mt-2">
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Option 1</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Option 2</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Option 3</a>
</div>
</div>
<!-- Mobile Support Dropdown -->
<div class="w-full text-center">
<button id="support-toggle"
class="w-full text-gray-700 text-lg hover:text-[#8D448B] flex justify-center items-center gap-1">
Support <span>▼</span>
</button>
<div id="support-menu" class="hidden flex flex-col space-y-2 mt-2">
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">FAQ</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Contact Support</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-200">Live Chat</a>
</div>
</div>
<a href="/Contact.html" class="text-gray-700 text-lg hover:text-[#8D448B]">Contact</a>
<a href="#" class="text-gray-700 text-lg hover:text-[#8D448B]">About Us</a>
<button
class="px-5 py-2 border-2 border-[#8D448B] text-[#8D448B] font-bold hover:bg-[#8D448B] hover:text-white">
Register Now
</button>
</div>
</header>
<!-- JavaScript for Mobile Menu and Dropdown Toggle -->
<script>
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
const closeMenu = document.getElementById('close-menu');
const advertiseToggle = document.getElementById('advertise-toggle');
const advertiseMenu = document.getElementById('advertise-menu');
const supportToggle = document.getElementById('support-toggle');
const supportMenu = document.getElementById('support-menu');
// Open mobile menu
menuToggle.addEventListener('click', () => {
mobileMenu.classList.remove('translate-x-full');
});
// Close mobile menu
closeMenu.addEventListener('click', () => {
mobileMenu.classList.add('translate-x-full');
});
// Toggle Advertise dropdown
advertiseToggle.addEventListener('click', () => {
advertiseMenu.classList.toggle('hidden');
});
// Toggle Support dropdown
supportToggle.addEventListener('click', () => {
supportMenu.classList.toggle('hidden');
});
</script>
<!-- Hero Section -->
<div class="flex flex-col md:flex-row items-center justify-between pb-10 px-4 sm:px-8 md:px-0">
<div class="flex flex-col md:flex-col items-start md:ml-16 px-6 mt-10 gap-8 w-full md:w-1/2">
<div class="text-center md:text-left">
<h1 class="text-3xl sm:text-4xl font-bold leading-tight text-gray-900">
Great software is <br/> built with amazing <br/> developers
</h1>
<p class="mt-4 text-base sm:text-lg text-gray-700">
We help build and manage a team of world-class <br/>developers to bring your vision to life.
</p>
<!-- Subscription Form -->
<div class="mt-6 flex flex-col sm:flex-row items-center gap-3 w-full">
<input type="email" placeholder="Subscribe newsletter"
class="p-3 w-full sm:w-2/3 border rounded-lg">
<button class="bg-[#8D448B] text-white px-6 py-3 rounded-lg w-full sm:w-auto">
Subscribe
</button>
</div>
</div>
<!-- Sponsors Section -->
<div class="flex flex-col sm:flex-row items-center gap-4 sm:gap-[1.31rem] md:flex-row">
<p class="text-md text-gray-600">Sponsored by:</p>
<div class="flex gap-4 sm:gap-[1.75rem] items-center">
<img src="/assets/img_paypal.png" alt="Paypal"
class="h-[1.75rem] w-20 sm:w-24 object-contain">
<img src="/assets/img_google.png" alt="Google"
class="h-[1.75rem] w-16 sm:w-20 object-contain">
<img src="/assets/img_dropbox.png" alt="Dropbox"
class="h-[1.75rem] w-16 sm:w-20 object-contain">
</div>
</div>
</div>
<!-- Hero Image -->
<img src="/assets/img_img.png" alt="Hero Image" class="w-full md:w-2/6 object-cover mt-6 md:mt-0">
</div>
</div>
<!-- Features Section -->
<div class="flex flex-col items-center">
<div class="text-center">
<h3 class="text-[#8D448B] font-semibold">Quality Features</h3>
<h1 class="text-2xl font-bold">Meet exciting features of the app</h1>
</div>
<div class="flex flex-wrap justify-center gap-8 w-full mt-8 mb-8">
<!-- Feature 1 -->
<div class="flex flex-col items-center text-center">
<img src="/assets/first.png" alt="Unlimited Customization" class="w-16 h-16 sm:w-12 sm:h-12" />
<h1 class="text-lg font-semibold mt-2 text-base sm:text-sm">Unlimited Customization</h1>
<p class="text-gray-600 w-40 h-20 text-sm sm:w-32 sm:h-16">Get your blood tests delivered at home.
Collect a sample from your blood tests.</p>
</div>
<!-- Feature 2 -->
<div class="flex flex-col items-center text-center">
<img src="/assets/vector.png" alt="Vector Shape & Resizable" class="w-16 h-16 sm:w-12 sm:h-12" />
<h1 class="text-lg font-semibold mt-2 text-base sm:text-sm">Vector Shape & Resizable</h1>
<p class="text-gray-600 w-40 h-20 text-sm sm:w-32 sm:h-16">Get your blood tests delivered at home.
Collect a sample from your blood tests.</p>
</div>
<!-- Feature 3 -->
<div class="flex flex-col items-center text-center">
<img src="/assets/editing.png" alt="Editing Freedom" class="w-16 h-16 sm:w-12 sm:h-12" />
<h1 class="text-lg font-semibold mt-2 text-base sm:text-sm">Editing Freedom</h1>
<p class="text-gray-600 w-40 h-20 text-sm sm:w-32 sm:h-16">Get your blood tests delivered at home.
Collect a sample from your blood tests.</p>
</div>
<!-- Feature 4 -->
<div class="flex flex-col items-center text-center">
<img src="/assets/award.png" alt="Best Award History" class="w-16 h-16 sm:w-12 sm:h-12" />
<h1 class="text-lg font-semibold mt-2 text-base sm:text-sm">Best Award History</h1>
<p class="text-gray-600 w-40 h-20 text-sm sm:w-32 sm:h-16">Get your blood tests delivered at home.
Collect a sample from your blood tests.</p>
</div>
</div>
</div>
<!--Features 1-->
<div class="max-w-7xl mx-auto flex flex-wrap items-center justify-around px-4 mt-8 sm:px-8 md:px-0">
<img src="/assets/f1.png" alt="Hero Image" class="w-full md:w-2/6 ml-0 md:ml-12 object-cover">
<div class="flex flex-col items-center md:items-start text-center md:text-left mt-10 gap-8 ">
<h1 class="text-3xl md:text-4xl font-bold leading-tight text-gray-900 ">
Boost your agencies<br /> by choosing Ninja<br /> Developers
</h1>
<p class="text-md text-gray-700">
Create custom landing pages with Shades that convert <br /> more visitors than any website, no
coding required.
</p>
<div class="flex flex-col gap-4">
<div class="flex items-center">
<img class="w-5 h-5 mr-2" src="/assets/right.png" alt="Feature 1">
<p>Unlimited design possibility</p>
</div>
<div class="flex items-center">
<img class="w-5 h-5 mr-2" src="/assets/right.png" alt="Feature 2">
<p>Completely responsive features</p>
</div>
<div class="flex items-center">
<img class="w-5 h-5 mr-2" src="/assets/right.png" alt="Feature 3">
<p>Easy to customize plugins</p>
</div>
</div>
<p class="mt-4 text-[#8D448B] font-semibold cursor-pointer">Learn more ></p>
</div>
</div>
<div class="flex flex-col items-center text-center px-6 py-12">
<!-- Heading Section -->
<h1 class="text-3xl font-bold text-gray-900 leading-tight">
Leading companies trust us <br> to develop software
</h1>
<p class="text-gray-600 mt-3 max-w-xl">
We believe it's important for everyone to have access to software,
especially when it comes to digital learning.
</p>
<a href="#" class="text-blue-600 font-semibold mt-2">
Explore Details →
</a>
<!-- Video Section -->
<div class="mt-8 relative">
<img src="/assets/video.png" alt="Video Thumbnail" class="w-full max-w-3xl rounded-lg shadow-md">
<button class="absolute inset-0 flex items-center justify-center">
<div class="bg-white p-4 rounded-full shadow-lg">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-[#8D448B]" fill="currentColor"
viewBox="0 0 24 24">
<path d="M7 6v12l10-6z" />
</svg>
</div>
</button>
</div>
<!-- Testimonials Section -->
<div class="mt-12 max-w-2xl text-center">
<h3 class="text-sm font-semibold text-[#8D448B]">Customer Comments</h3>
<h2 class="text-xl font-bold text-gray-900 mt-2">Why customers love us</h2>
<p class="text-gray-700 mt-4">
They are doing an amazing job with 100% customer satisfaction.
Love their work and would like to work with them again.
</p>
<!-- Customer Profiles -->
<div class="mt-6 flex flex-wrap justify-center gap-6">
<div class="flex items-center space-x-3">
<img class="h-10 w-10 bg-gray-300 rounded-full" src="/assets/firstuser.png" />
<div>
<p class="font-semibold text-gray-900">Pierre Hackett</p>
<p class="text-sm text-gray-600">VP of Engineering</p>
</div>
</div>
<div class="flex items-center space-x-3">
<img class="h-10 w-10 bg-gray-300 rounded-full" src="/assets/seconduser.png" />
<div>
<p class="font-semibold text-gray-900">Natalia Sarz</p>
<p class="text-sm text-gray-600">Head of Technology</p>
</div>
</div>
<div class="flex items-center space-x-3">
<img class="h-10 w-10 bg-gray-300 rounded-full" src="/assets/thirduser.png" />
<div>
<p class="font-semibold text-gray-900">Ece Akman</p>
<p class="text-sm text-gray-600">Senior Marketer</p>
</div>
</div>
</div>
</div>
</div>
<!--Customer supprt-->
<div class="max-w-8xl mx-auto flex flex-wrap items-center justify-center gap-0 px-4 mt-8 mb-8 sm:px-8 md:px-0">
<div class="flex flex-col items-center md:items-start text-center md:text-left mt-10 gap-6 max-w-md ">
<h1 class="text-3xl md:text-4xl font-bold leading-tight text-gray-900 ">
Free Customer Support <br />to ensure what you like<br /> to expect
</h1>
<p class="text-sm text-gray-700">
We offer a risk-free trial period of up to two weeks. You will only have to pay if you are happy
with the developer and wish to continue. If you are unsatisfied, well refund payment or fix issues
on our dime period customers.
</p>
<p class="text-xs text-gray-400 leading-[1.7rem]">
If you are happy with the developer and wish to continue. If you <br /> are unsatisfied, we’ll
refund payment or fix issues.
</p>
<p class="mt-1 text-[#8D448B] font-semibold cursor-pointer">Learn more ></p>
</div>
<img src="/assets/3rdimg.png" alt="Hero Image"
class="w-full md:w-2/6 ml-0 md:ml-12 mr-4 object-cover max-w-[400px] md:max-w-[300px]">
</div>
<!--Other features and footer-->
<div class="flex flex-col min-h-screen">
<div class="relative bg-gray-100 w-full max-w-screen-xl mx-auto flex flex-col items-center ">
<section class="text-center py-12">
<h3 class="text-[#8D448B] font-semibold">Quality Features</h3>
<h2 class="text-2xl font-bold text-gray-900 mt-2">Tutorials that people love most</h2>
</section>
<div class="container max-w-4xl mx-auto px-4 py-8 grid grid-cols-1 md:grid-cols-3 gap-6 mb-16 ">
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="/assets/one.png" alt="Tutorial Image" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">How to work with prototype design with adobe xd featuring tools</h3>
<p class="text-gray-500 text-sm mt-2 flex items-center"><span class="mr-2">💬</span> 22 Comments</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="/assets/two.png" alt="Tutorial Image" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">Create multiple artboard by using figma prototyping development</h3>
<p class="text-gray-500 text-sm mt-2 flex items-center"><span class="mr-2">💬</span> 15 Comments</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="/assets/three.png" alt="Tutorial Image" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">Convert your web layout theming easily with sketch zeplin extension
</h3>
<p class="text-gray-500 text-sm mt-2 flex items-center"><span class="mr-2">💬</span> 18 Comments</p>
</div>
</div>
</div>
<!-- Overlapping Middle Section -->
<div
class="absolute left-1/2 bottom-0 transform -translate-x-1/2 translate-y-1/2 w-10/12 sm:w-11/12 md:w-3/4 lg:w-2/3 bg-[#8D448B] flex flex-row py-2 sm:py-3 px-3 sm:px-5 md:px-8 items-center rounded-lg justify-around gap-2 sm:gap-3 text-center shadow-lg">
<h2 class="text-sm sm:text-lg md:text-xl text-white font-bold text-start">
Hire the world’s best developers <br class="hidden sm:block" /> and designers around!
</h2>
<img src="/assets/arrow.png" class="w-16 sm:w-20 md:w-28 lg:w-32" />
<div class="flex flex-col items-center">
<svg width="40" height="12" class="mt-1 hidden sm:block" viewBox="0 0 73 26" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5">
<rect x="2.4718" y="7.89209" width="22.0884" height="3.6814" rx="1.8407"
transform="rotate(42.1773 2.4718 7.89209)" fill="white" />
<rect x="53.7491" y="22.7236" width="22.0884" height="3.6814" rx="1.8407"
transform="rotate(-42.18 53.7491 22.7236)" fill="white" />
<rect x="39.0001" width="23" height="3" rx="1.5" transform="rotate(90 39.0001 0)" fill="white" />
</g>
</svg>
<button
class="mt-1 bg-white text-[#8D448B] px-2 sm:px-3 py-1 sm:py-1.5 rounded-lg font-semibold shadow-md text-xs sm:text-sm">
HIRE DEVELOPERS
</button>
<svg width="40" height="12" class="mb-1 hidden sm:block" viewBox="0 0 74 27" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5">
<rect width="22.3383" height="3.72305" rx="1.86152"
transform="matrix(0.741071 -0.671427 -0.671427 -0.741071 3.0896 18.6143)" fill="white" />
<rect width="22.3383" height="3.72305" rx="1.86152"
transform="matrix(0.741039 0.671462 0.671462 -0.741039 54.947 3.61523)" fill="white" />
<rect width="23.2602" height="3.03394" rx="1.51697" transform="matrix(0 -1 -1 0 40.0311 26.5957)"
fill="white" />
</g>
</svg>
</div>
</div>
</div>
<footer class="bg-white text-gray-500 text-xs md:text-sm py-10 mt-8 flex flex-col md:flex-row md:items-center md:justify-around text-center px-6 md:px-8 max-w-screen-lg mx-auto w-full gap-6 md:gap-5">
<!-- Left Section -->
<div class="flex flex-col md:flex-row items-center gap-2 md:gap-3">
<div class="flex items-center gap-2">
<img src="/assets/logo.png" class="w-4 md:w-5" />
<p class="font-semibold text-gray-900 text-sm md:text-base">StartupLanding</p>
</div>
<p class="text-[10px] md:text-xs">Copyright © 2025 Srinjoy, Inc</p>
</div>
<!-- Right Section (Links) -->
<div class="flex flex-wrap justify-center md:justify-end gap-2 md:gap-5">
<a href="index.html" class="hover:underline">Home</a>
<a href="#" class="hover:underline">Advertise</a>
<a href="#" class="hover:underline">Support</a>
<a href="#" class="hover:underline">Marketing</a>
<a href="#" class="hover:underline">FAQ</a>
</div>
</footer>
</div>
</div>
</body>
</html>