-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (71 loc) · 3.95 KB
/
index.html
File metadata and controls
81 lines (71 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://image.flaticon.com/icons/svg/3090/3090401.svg">
<title>LOMBOK</title>
<link rel="stylesheet" href="public/css/styles.css">
<style>
* {
transition: 0.2s all;
}
html {
font-family: 'Lucida Grande', Verdana, sans-serif;
}
</style>
</head>
<html>
<body class="bg-gray-100 ">
</body>
<header class="flex justify-between z-10 text-white m-6 ">
<a class="m-2 text-xl text-gray-600"href="">LO</a>
<nav>
<ul class="text-xl flex hidden z-20 md:flex">
<li class="m-2 text-gray-600 z-20">About</li>
<li class="m-2 text-gray-600 z-20">Article</li>
<li class="m-2 text-gray-600 z-20">Subscribe</li>
</ul>
</nav>
</header>
<h1 class="z-20 text-gray-600 flex justify-center mt-10 text-6xl">LOMBOK</h1>
<h3 class="z-20 text-gray-600 text-center mt-2 text-2xl">HOLISTIC HEALTH</h3>
<div class="z-20 border-black w-10 h-1 bg-gray-700 m-auto mt-3 mb-32"></div>
<section class="z-10 ">
<h2 class="my-2 text-gray-800 uppercase text-center text-3xl">Latest Articles</h2>
<div class="grid grid-cols-1 md:grid-cols-3">
<div class="w-auto bg-gray-100 mx-6 my-6 shadow-lg">
<img src="https://images.pexels.com/photos/6992/forest-trees-northwestisbest-exploress.jpg?cs=srgb&dl=pexels-snapwire-6992.jpg&fm=jpg" alt="">
<div class="border-4 border-gray-600 w-10 h-1 my-8 mx-auto"></div>
<h2 class="my-2 text-gray-800 uppercase text-center text-3xl"> Forest</h2>
<p class="text-gray-600 m-6 mb-10 text-2xl text-center md:text-xl ">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Incidunt, atque.</p>
</div>
<div class="w-auto bg-gray-100 mx-6 my-6 shadow-lg">
<img src="https://images.pexels.com/photos/6992/forest-trees-northwestisbest-exploress.jpg?cs=srgb&dl=pexels-snapwire-6992.jpg&fm=jpg" alt="">
<div class="border-4 border-gray-600 w-10 h-1 my-8 mx-auto"></div>
<h2 class="my-2 text-gray-800 uppercase text-center text-3xl"> Forest</h2>
<p class="text-gray-600 m-6 mb-10 text-2xl text-center md:text-xl ">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Incidunt, atque.</p>
</div>
<div class="w-auto bg-gray-100 mx-6 my-6 shadow-lg">
<img src="https://images.pexels.com/photos/6992/forest-trees-northwestisbest-exploress.jpg?cs=srgb&dl=pexels-snapwire-6992.jpg&fm=jpg" alt="">
<div class="border-4 border-gray-600 w-10 h-1 my-8 mx-auto"></div>
<h2 class="my-2 text-gray-800 uppercase text-center text-3xl"> Forest</h2>
<p class="text-gray-600 m-6 mb-10 text-2xl text-center md:text-xl ">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Incidunt, atque.</p>
</div>
</div>
</section>
<section class="mt-8 md:flex md:justify-between" >
<img class="w-full md:w-1/2" src="https://images.pexels.com/photos/3493777/pexels-photo-3493777.jpeg?cs=srgb&dl=pexels-aleksey-kuprikov-3493777.jpg&fm=jpg" alt="">
<article class="w=1/2 p-8 text-gray-600 text-xl bg-gray-100 flex flex-col justify-center">
<h2 class="my-2 text-gray-800 uppercase text-center text-4xl">title</h2>
<p class="text-gray-600 m-6 mb-10 text-2xl text-center md:text-xl ">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores fugit commodi fuga molestias pariatur eius, dolores sed cupiditate mollitia quo.</p>
</article>
</section>
<section class="flex flex-col items-center bg-white py-8">
<h2 class="my-2 text-gray-800 uppercase text-center text-3xl">Subscribe</h2>
<p class="text-gray-600 m-6 mb-10 text-2xl text-center md:text-xl ">Sign-up to our News letter</p>
<input class=" h-10 border border-gray-300 p-2 max-w-md" type="text" placeholder="e-mail">
<button class=" text-center h-10 bg-gray-300 m-2 p-2 max-w-md" > Submite </button>
</section>
</html>
</html>