-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (72 loc) · 4.1 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
<!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="stylesheet" href="input.css">
<title>Microsoft – Cloud, Computers, Apps & Gaming</title>
</head>
<body>
<div class="container mx-auto">
<div class="navbar flex items-center justify-between w-full py-4 md:scale-110 scale-90 ">
<div class="flex justify-center items-center md:order-2">
<div class="hamburger inline-block p-1 cursor-pointer md:hidden">
<div class="line h-0.5 w-6 my-1 bg-black"></div>
<div class="line h-0.5 w-6 my-1 bg-black"></div>
<div class="line h-0.5 w-6 my-1 bg-black"></div>
</div>
<div class="search md:hidden w-4 mr-6"><img src="assets/search.svg" alt=""></div>
</div>
<div class="logo text-center flex md:order-1">
<div class="flex justify-start object-cover"><img class="md:w-[100%] w-[80%] " src="assets/mslogo.png" alt=""></div>
<div class="features absolute w-fit md:static md:w-auto bg-gray-200 md:bg-white inset-0 md:flex md:items-center md:mx-4 md:space-x-6 -translate-x-96 md:translate-x-0">
<div class="fitem hover:underline hover:underline-offset-8 cursor-pointer">Microsoft 365</div>
<div class="hover:underline hover:underline-offset-8 cursor-pointer">Office</div>
<div class="hover:underline hover:underline-offset-8 cursor-pointer">Windows</div>
<div class="hover:underline hover:underline-offset-8 cursor-pointer">Surface</div>
<div class="hover:underline hover:underline-offset-8 cursor-pointer">Xbox</div>
<div class="hover:underline hover:underline-offset-8 cursor-pointer">Support</div>
</div>
</div>
<div class="cart text-center md:order-3 flex">
<div class="search md:block hidden mr-6"> All Microsoft </div>
<div class=" md:block hidden ">Search</div>
<img class="w-4 m-2" src="assets/search.svg" alt="">
<div class="flex pt-1">
<img class="w-4 h-4 m-['4px']" src="assets/cart icon.svg" alt="">
<img class="w-4 h-4 m-['4px']" src="assets/account icon.svg" alt="">
</div>
</div>
</div>
<div class="slider flex flex-col-reverse md:flex-row bg-[#f2f2f2]">
<div class="left flex flex-col justify-center items-center md:items-baseline md:py-12 md:ml-32 space-y-5">
<h1 class="text-2xl font-medium md:text-4xl mx-5">Surface Laptop 4</h1>
<p class="w-3/4 mx-5 text-center md:text-left">Do it all with a perfect balance of sleek, ultra-thin design, multitasking speed and improved performance</p>
<button class="text-white bg-black px-4 py-2 my-6 font-bold mx-5">Shop Now ></button>
</div>
<div class="right">
<img class="w-[60rem] md:w-[64rem]" src="assets/ms.webp" alt="">
</div>
</div>
<div class="promo space-y-6 flex flex-col lg:flex-row justify-center">
<div class="item flex items-center mx-4 mt-6 space-x-2 md:flex-col" >
<img src="assets/ic1.png" alt="">
<span class="font-medium md:w-[8rem] md:text-center text-sm my-4">Choose your Microsoft 365</span>
</div>
<div class="item flex md:flex-col items-center mx-4 space-x-2" >
<img src="assets/ic2.webp" alt="">
<span class="font-medium md:w-[8rem] md:text-center text-sm my-4">Explore Surface devices</span>
</div>
<div class="item flex items-center mx-4 space-x-2 md:flex-col" >
<img src="assets/ic3.webp" alt="">
<span class="font-medium md:w-[8rem] md:text-center text-sm my-4">Buy Xbox games</span>
</div>
<div class="item flex items-center mx-4 space-x-2 md:flex-col" >
<img src="assets/ic4.png" alt="">
<span class="font-medium md:w-[8rem] md:text-center text-sm my-4">Get Windows 11</span>
</div>
</div>
</div>
</body>
</html>