-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.56 KB
/
Copy pathindex.html
File metadata and controls
34 lines (32 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body class="">
<header class=" flex justify-between bg-purple-900 text-white py-4 items-center px-8">
<div class="logo"><img src="./images/logo.png" alt="" class="w-40"></div>
<ul class="flex space-x-10 px-16 ">
<li class="cursor-pointer "><a href="">Home</a></li>
<li class="cursor-pointer "><a href="">Features</a></li>
<li class="cursor-pointer "><a href="">Courses</a></li>
<li class="cursor-pointer "><a href="">About</a></li>
<li class="cursor-pointer "><a href="">Contact</a></li>
</ul>
</header>
<div class="main h-svh flex">
<div class="left w-1/2 h-full pt-40 pl-24 ">
<h2 class="text-7xl leading-tight font-bold">Hello <span class="text-purple-900"> buddy </span><br> Is everything fine</h2>
<p class="mt-5 text-gray-600 text-lg w-10/12" >Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos excepturi aliquid porro adipisci quod veniam? Lorem, ipsum amet consectetur adipisicing elit. Enim, corporis.</p>
<button class=" px-4 py-2 rounded-sm bg-purple-900 text-white text-lg mt-8">Learn more</button>
<button class="px-4 py-2 rounded-sm text-purple-900 border border-purple-900 ml-3 text-lg mt-8 ">Contact Us</button>
</div>
<div class="right w-1/2 h-full">
<img src="./images/image.jpg" alt="" class="w-10/12">
</div>
</div>
</body>
</html>