-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdminViewBlogs.html
65 lines (55 loc) · 2.83 KB
/
AdminViewBlogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View Blogs</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div>
<div class="p-5 m-5">
<h1 class="text-2xl text-center italic font-bold">User Blogs</h1>
</div>
<div class="flex border-2 border-black shadow-xl shadow-black p-3">
<div>
<img src="/Pimage/trvb.jpg" class=" w-auto h-auto hover:opacity-70 p-5">
</div>
<div class="p-5">
<div>
<h2 class=" text-2xl font-bold p-5">The Journey of a Thousand Miles Began With Curiosity.</h2>
<p class="text-xl p-8">Looking for one of the most relaxing hikes in Madeira, but still want some
adventure? On the Levada do Caldeirão Verde hike, experience a calm forest walk, weave through
narrow tunnels, and picnic in front of a spectacular waterfall. There’s almost no elevation gain
too, so the this is the perfect hike for a lighter day in Madeira.
Since it is a flat, easy, picturesque trail, Levada do Caldeirão Verde is one of the most
popular hikes in Madeira. It really helps to get here early, especially in the summer months.
Two-way traffic along the irrigation canals gets a little tricky, so an early start ensures low
crowds along the way, at least for the walk out to the waterfall.
Here’s what you need to know to hike Levada do Caldeirão Verde Hike (PR9) and have the best
experience.</p>
</div>
<div class="flex justify-end">
<!-- button div -->
<div>
<img src="/Pimage/profile.png" class="w-28 h-18 ">
</div>
<div>
<p class=" text-xl font-bold mt-5">Anandhu Narayanan</p>
<p class="text-xl">Category:Travel Blogs</p>
<p class="text-xl">Latest Update : 10/10/2024</p>
<p class="text-xl">Location: Munnar</p>
</div>
</div>
<div>
<button
class=" bg-[#8da9ac] w-32 h-14 rounded-md border-2 m-2 hover:border-4 hover:border-black text-xl">Remove</button><br>
</div>
</div>
</div>
<div class="flex justify-center p-5 m-5">
<button
class=" bg-[#8da9ac] w-36 h-14 rounded-md border-2 m-2 hover:border-4 hover:border-black text-xl">SaveChanges</button><br>
</div>
</body>
</html>