-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
600 lines (584 loc) · 21.6 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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
type="x-icon"
href="asset/favicon.png"
class="w-[20px]"
/>
<title>Microsoft</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="container m-auto">
<div class="nav flex items-center justify-between px-2 md:p-4 xl:px-20">
<div class="first flex items-center justify-center md:order-2">
<div class="hamburger inline-block cursor-pointer p-4 md:hidden">
<div class="line my-1 h-0.5 w-6 bg-black"></div>
<div class="line my-1 h-0.5 w-6 bg-black"></div>
<div class="line my-1 h-0.5 w-6 bg-black"></div>
</div>
<div class="search md:hidden">
<img src="asset/search.png" alt="" class="search-icon w-6" />
</div>
</div>
<div class="second logo flex space-x-10 md:order-1">
<div class="logo">
<img src="asset/mslogo.png" alt="" class="ms-logo w-36 px-2" />
</div>
<div
class="features absolute inset-0 hidden w-fit -translate-x-96 md:items-center justify-between bg-gray-200 md:static md:mx-4 md:flex md:w-auto md:translate-x-0 md:space-x-5 md:bg-white"
>
<div
class="hover:underline hover:underline-offset-4 cursor-pointer"
>
Microsoft 365
</div>
<div
class="hover:underline hover:underline-offset-4 cursor-pointer"
>
Teams
</div>
<div
class="hover:underline hover:underline-offset-4 cursor-pointer"
>
Windows
</div>
<div
class="hover:underline hover:underline-offset-4 cursor-pointer"
>
Surface
</div>
<div
class="hover:underline hover:underline-offset-4 cursor-pointer"
>
More
</div>
</div>
</div>
<div class="third trio flex items-center md:space-x-4 md:order-3">
<div class="third icons flex space-x-4">
<img
src="asset/search.png"
alt=""
class="search-icon w-6 hidden md:inline-block lg:hidden"
/>
<img
src="asset/shopping-cart.png"
alt=""
class="cart-icon w-6 lg:hidden"
/>
<img
src="asset/add-account.png"
alt=""
class="add-account-icon w-6 text-left lg:hidden"
/>
</div>
<div class="search hidden lg:inline-block align-middle">
Search<img
src="asset/search.png"
alt=""
class="search-icon w-6 pl-0.5 md:inline-block"
/>
</div>
<div class="cart pl-2 hidden lg:inline-block align-middle">
Cart<img
src="asset/shopping-cart.png"
alt=""
class="pl-0.5 cart-icon w-5 md:inline-block"
/>
</div>
<div class="account pl-2 hidden lg:inline-block align-middle">
Sign in<img
src="asset/add-account.png"
alt=""
class="add-account-icon pl-2 w-11 inline-block"
/>
</div>
</div>
</div>
<div
class="slider flex mx-0 flex-col-reverse md:inset-x-0 bg-[#bcdbf9] md:flex-row md:justify-between md:bg-[#bedefa]"
>
<div
class="left m-4 flex flex-col md:px-20 space-y-3 md:space-y-4 md:justify-center"
>
<h1 class="text-3xl font-medium md:py-1 md:font-semibold md:text-4xl">
Microsoft 365
</h1>
<p class="text-lg font-normal md:text-xl">
Everything you need to achieve more in less time
</p>
<div class="space-y-3 md:flex md:justify-between items-center">
<button
class="bg-[#0067b8] text-white text-base font-medium px-3 py-2 w-fit md:text-lg"
>
For one person
</button>
<a
href=""
class="block text-lg font-medium text-[#0067b8] pr-10 md:text-black"
>For up to six people ></a
>
</div>
</div>
<div class="right">
<img src="asset/slider.png" alt="" class="md:w-[40rem]" />
</div>
</div>
<!-- promotion section -->
<div
class="promotion flex flex-col space-y-6 md:space-y-0 md:flex-wrap md:flex-row justify-center items-center my-20 text-[#0067b8] md:space-x-20 lg:space-x-40"
>
<div class="item01">
<img
src="asset/icon1.webp"
alt=""
class="icon1 m-auto pb-3 w-[45px]"
/>
<span class="font-medium text-lg">Choose your Microsoft 365</span>
</div>
<div class="item01">
<img
src="asset/icon2.webp"
alt=""
class="icon2 m-auto pb-3 w-[45px]"
/>
<span class="font-medium text-lg">Explore Surface devices</span>
</div>
<div class="item01">
<img
src="asset/icon3.webp"
alt=""
class="icon3 m-auto pb-3 w-[45px]"
/>
<span class="font-medium text-lg">Buy Xbox games</span>
</div>
<div class="item01">
<img
src="asset/icon1.webp"
alt=""
class="icon4 m-auto pb-3 w-[45px]"
/>
<span class="font-medium text-lg">Get Windows 11</span>
</div>
</div>
<!-- products of ms section-->
<div class="products-container m-auto">
<div class="flex flex-col mx-4">
<div
class="flex flex-col m-auto md:m-0 md:flex-row md:space-x-10 md:justify-between space-y-20 md:space-y-0"
>
<div class="product-01 md: w-[303px] md:h-[396px]">
<img src="asset/product1.jpeg" alt="" class="" />
<button
class="bg-[#ffb900] text-black py-1.5 px-3.5 font-medium text-lg mt-6"
>
New
</button>
<h3 class="text-2xl font-semibold">Surface Pro 9</h3>
<p class="text-lg font-normal my-4">
The tablet flexibility you want and the laptop performance you
need — all in one ultra-portable device.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Learn more ></a
>
</div>
<div class="product-02 md: w-[303px] md:h-[396px]">
<img src="asset/product2.webp" alt="" class="" />
<button
class="bg-[#ffb900] text-black py-1.5 px-3.5 font-medium text-lg mt-6"
>
New
</button>
<h3 class="text-2xl font-semibold">Surface Laptop 5</h3>
<p class="text-lg font-normal my-4">
Sophisticated style and multitasking speed powered by 12th Gen
Intel® Core, with Windows 11.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Learn more ></a
>
</div>
<div class="product-03 md: w-[303px] md:h-[396px]">
<img src="asset/product3.webp" alt="" class="" />
<h3 class="text-2xl font-semibold mt-12">
Surface Laptop Studio
</h3>
<p class="text-lg font-normal my-4">
Flex your creative muscle on the most powerful Surface Laptop.
Now available with Windows 11.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Shop now ></a
>
</div>
<div class="product-04 md: w-[303px] md:h-[396px]">
<img src="asset/product4.webp" alt="" class="" />
<h3 class="text-2xl font-semibold mt-12">Xbox Series X</h3>
<p class="text-lg font-normal my-4">
The fastest, most powerful Xbox ever.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Shop now ></a
>
</div>
</div>
<!-- special product section-->
<div
class="special-product product-05 flex my-20 md:justify-between flex-col-reverse md:px-20 md:flex-row md:bg-[#e6e6e6] md:h-[600px]"
>
<div class="left flex flex-col md:justify-center">
<h3
class="text-2xl font-semibold mt-12 md:text-5xl md:font-semibold"
>
Xbox Series S
</h3>
<p class="text-lg md:text-xl font-normal my-4">
Next-gen performance in the smallest Xbox ever
</p>
<button
class="bg-[#0067b8] text-white py-2 px-3.5 font-medium text-lg md:text-xl mt-6 w-fit"
>
Shop now
</button>
</div>
<div class="right">
<img
src="asset/product5.jpeg"
alt=""
class="special-product-icon md:h-[600px]"
/>
</div>
</div>
<!-- For business section-->
<div class="">
<h2
class="text-3xl m-3 md:m-0 md:my-5 md:text-5xl font-medium md:font-medium"
>
For business
</h2>
</div>
<div
class="flex flex-col m-auto md:m-0 md:flex-row md:space-x-10 md:justify-between space-y-20 md:space-y-0 md:h-[500px]"
>
<div class="product-06 md: w-[303px] md:h-[396px]">
<img src="asset/product6.webp" alt="" class="" />
<button
class="bg-[#ffb900] text-black py-1.5 px-3.5 font-medium text-lg mt-6"
>
New
</button>
<h3 class="text-2xl font-semibold">
Surface for Business Family
</h3>
<p class="text-lg font-normal my-4">
Surface for Business devices enable work on your team's terms
with flexibility, built-in security and the power they need to
succeed.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Learn more ></a
>
</div>
<div class="product-07 md: w-[303px] md:h-[396px]">
<img src="asset/product7.webp" alt="" class="" />
<h3 class="text-2xl font-semibold mt-12">
Get Microsoft Teams for free
</h3>
<p class="text-lg font-normal my-4">
Online meetings, chat and shared cloud storage – all in one
place.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Sign up for free ></a
>
</div>
<div class="product-08 md: w-[303px] md:h-[396px]">
<img src="asset/product8.webp" alt="" class="" />
<h3 class="text-2xl font-semibold mt-12">
Welcome to your Windows 365 Cloud PC
</h3>
<p class="text-lg font-normal my-4">
Securely stream your Windows experience from the Microsoft cloud
to any device.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Get it today ></a
>
</div>
<div class="product-09 md: w-[303px] md:h-[396px]">
<img src="asset/product9.webp" alt="" class="" />
<h3 class="text-2xl font-semibold mt-12">
Thrive in a hybrid world
</h3>
<p class="text-lg font-normal my-4">
Discover tools, resources and strategies to help your employees
succeed in the new world of flexible work.
</p>
<a href="" class="text-[#0067b8] text-lg font-semibold"
>Learn more ></a
>
</div>
</div>
</div>
</div>
<section class="social-handles my-12">
<div class="social-links flex mx-7 items-center space-x-1 md:mx-5">
<span class="text-lg md:text-xl font-medium">Follow Microsoft</span>
<img
src="asset/facebook-icon.webp"
alt=""
class="facebook-icon w-[30px] h-[30px]"
/>
<img
src="asset/twitter-icon.webp"
alt=""
class="twitter-icon w-[30px] h-[30px]"
/>
<img
src="asset/youtube-icon.webp"
alt=""
class="youtube-icon w-[30px] h-[30px]"
/>
<img
src="asset/instagram-icon.png"
alt=""
class="instagram-icon w-[30px] h-[30px]"
/>
</div>
</section>
</div>
<footer class="bg-[#f2f2f2]">
<div
class="grid grid-cols-1 m-auto gap-8 px-6 py-10 sm:grid-cols-3 xl:px-20 xl:grid-cols-6"
>
<div class="footer-nav-col-01">
<h2 class="mb-3 text-base font-semibold font-sans text-[#616161]">
What's New
</h2>
<ul class="text-sm font-sans text-[#616161]">
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft 365</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Games</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Surface Pro 9</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Surface Laptop 5</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Surface Laptop Studio</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Surface Laptop Go 2</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Window 11 apps</a>
</li>
</ul>
</div>
<div class="footer-nav-col-02">
<h2 class="mb-3 text-base font-semibold font-sans text-[#616161]">
Microsoft Store
</h2>
<ul class="text-sm font-sans text-[#616161]">
<li class="mb-4">
<a href="#" class="hover:underline">Account profile</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Download Center</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Store Support</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Returns</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Order tracking</a>
</li>
</ul>
</div>
<div class="footer-nav-col-03">
<h2 class="mb-3 text-base font-semibold font-sans text-[#616161]">
Education
</h2>
<ul class="text-sm font-sans text-[#616161]">
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft in education</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Devices for education</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline"
>Microsoft Teams for Education</a
>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft 365 Education</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Office Education</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline"
>Educator training and development</a
>
</li>
<li class="mb-4">
<a href="#" class="hover:underline"
>Deals for students and parents</a
>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Azure for students</a>
</li>
</ul>
</div>
<div class="footer-nav-col-04">
<h2 class="mb-3 text-base font-semibold font-sans text-[#616161]">
Business
</h2>
<ul class="text-sm font-sans text-[#616161]">
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft cloud</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft security</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Azure</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Dynamics 365</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft 365</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Advertising</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Industry</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Teams</a>
</li>
</ul>
</div>
<div class="footer-nav-col-05">
<h2 class="mb-3 text-base font-semibold font-sans text-[#616161]">
Developer & IT
</h2>
<ul class="text-sm font-sans text-[#616161]">
<li class="mb-4">
<a href="#" class="hover:underline">Developer Center</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Documentation</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Learn</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Tech Community</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Azure Marketplace</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">AppSource</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Microsoft Power Platform</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Visual Studio</a>
</li>
</ul>
</div>
<div class="footer-nav-col-06">
<h2 class="mb-3 text-base font-semibold font-sans text-[#616161]">
Company
</h2>
<ul class="text-sm font-sans text-[#616161]">
<li class="mb-4">
<a href="#" class="hover:underline">Careers</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">About Microsoft</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Company news</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Privacy at Microsoft</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Investors</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Security</a>
</li>
<li class="mb-4">
<a href="#" class="hover:underline">Sustainability</a>
</li>
</ul>
</div>
</div>
<div
class="px-4 py-6 bg-[#f2f2f2] md:px-20 sm:justify-between sm:items-center flex flex-col sm:flex-row space-y-3"
>
<div class="left company-logo w-[95px] my-1">
<img src="asset/mslogo.png" alt="" class="microsoft-logo" />
</div>
<!--
Contact Microsoft Privacy Terms of use Trademarks About our ads -->
<div class="right microsoft-corporate-links sm:px-5">
<ul
class="corp-link-cont flex flex-wrap md:space-x-10 sm:items-center sm:justify-centerz"
>
<li
class="contact-us text-xs font-normal pr-4 font-sans text-[#616161]"
>
<a href="#" class="hover:underline">Contact Microsoft</a>
</li>
<li
class="privacy-and-cookies text-xs font-normal pr-4 font-sans text-[#616161]"
>
<a href="" class="hover:underline">Privacy</a>
</li>
<li
class="terms-of-use text-xs font-normal pr-4 font-sans text-[#616161]"
>
<a href="" class="hover:underline">Terms of use</a>
</li>
<li
class="trademarks text-xs font-normal pr-4 font-sans text-[#616161]"
>
<a href="" class="hover:underline">Trademarks</a>
</li>
<li
class="about-our-ads text-xs font-normal pr-4 font-sans text-[#616161]"
>
<a href="" class="hover:underline">About our ads</a>
</li>
<li class="text-xs font-normal font-sans pr-4 text-[#616161]">
© Microsoft 2023
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>