-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap" rel="stylesheet">
</head>
<body class ="font-[Poppins] bg-gradient-to-t from-[#fbc2eb] to-[#a6c1ee] h-screen">
<header class="bg-red-400">
<nav class = "flex justify-between items-center w-[92%] bg-red-400 mx-auto">
<div>
<img class="w-16" src="https://cdn-icons-png.flaticon.com/512/5968/5968204.png">
</div>
<div class = "">
<ul class = "flex items-center gap-[4vw]">
<li>
<a class = "hover:text-gray-500" href="#">Product</a>
</li>
<li>
<a class = "hover:text-gray-500" href="#">Solutions</a>
</li><li>
<a class = "hover:text-gray-500" href="#">Services</a>
</li><li>
<a class = "hover:text-gray-500" href="#">Deves</a>
</li><li>
<a class = "hover:text-gray-500" href="#">Pricing</a>
</li>
<li>
<button class="bg-[#a6c1ee] text-white px-5 py-2 rounded-full hover:bg-[#87acec]">
Sign in
</button>
</li>
</ul>
</div>
</nav>
</header>
</body>
</html>