-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExplore.html
106 lines (84 loc) · 4.66 KB
/
Explore.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/dev.css">
<link rel="stylesheet" href="css/explore.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html" class="active">Devaki Rawal</a></li>
<li><a href="Explore.html">Explore</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap w-full mb-20">
<div class="lg:w-1/2 w-full mb-6 lg:mb-0">
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-2 text-gray-900">Exploring The World</h1>
<div class="h-1 w-20 bg-indigo-500 rounded"></div>
</div>
<p class="lg:w-1/2 w-full leading-relaxed text-gray-500">Come what may, my spirit remains untouched by sadness and my confidence unwavering.
I refuse to let any circumstance bring me down or diminish my self-assurance.
No matter what unfolds, I hold steadfastly to my positive outlook and unwavering belief in myself.
</p>
</div>
<div class="flex flex-wrap -m-4">
<div class="xl:w-1/4 md:w-1/2 p-4">
<div class="bg-gray-100 p-6 rounded-lg">
<img class="h-40 rounded w-full object-cover object-center mb-6" src="image/group1.jpg" alt="content">
<a href="back.html">
<h3 class="tracking-widest text-indigo-500 text-xs font-medium title-font">Read More</h3>
</a>
<h2 class="text-lg text-gray-900 font-medium title-font mb-4">Friendship</h2>
<p class="leading-relaxed text-base">Friends play a vital role in our lives, offering support, companionship.</p>
</div>
</div>
<div class="xl:w-1/4 md:w-1/2 p-4">
<div class="bg-gray-100 p-6 rounded-lg">
<img class="h-40 rounded w-full object-cover object-center mb-6" src="image/group2.jpg" alt="content">
<a href="back.html">
<h3 class="tracking-widest text-indigo-500 text-xs font-medium title-font">Read More</h3>
</a>
<h2 class="text-lg text-gray-900 font-medium title-font mb-4">Journey Towards Entrepreneurship</h2>
<p class="leading-relaxed text-base">Getting towards the path of Entrepreneurship in very early age of my life </p>
</div>
</div>
<div class="xl:w-1/4 md:w-1/2 p-4">
<div class="bg-gray-100 p-6 rounded-lg">
<img class="h-40 rounded w-full object-cover object-center mb-6" src="image/group3.jpg" alt="content">
<a href="back.html">
<h3 class="tracking-widest text-indigo-500 text-xs font-medium title-font">Read More</h3>
</a>
<h2 class="text-lg text-gray-900 font-medium title-font mb-4">World full of happiness</h2>
<p class="leading-relaxed text-base">Imagine the Earth full of happiness.Is it possible why? and Why not?</p>
</div>
</div>
<div class="xl:w-1/4 md:w-1/2 p-4">
<div class="bg-gray-100 p-6 rounded-lg">
<img class="h-40 rounded w-full object-cover object-center mb-6" src="image/group4.jpg" alt="content">
<a href="back.html">
<h3 class="tracking-widest text-indigo-500 text-xs font-medium title-font">Read More</h3>
</a>
<h2 class="text-lg text-gray-900 font-medium title-font mb-4">Enjoying inner peace</h2>
<p class="leading-relaxed text-base">I am finding my way.Who I am and Why I am here???</p>
</div>
</div>
</div>
</div>
</section>
<footer>
<p>© 2023 Devaki Rawal. All rights reserved.</p>
</footer>
</body>
</html>