-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.html
84 lines (70 loc) · 3.11 KB
/
travel.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Travel Blog</title>
<link rel="stylesheet" href="vlog.css">
</head>
<body>
<!-- Navigation -->
<nav>
<ul>
<li><a href="#home">HOME</a></li>
<li><a href="#destinations">DESTINATION</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
<!-- Home Section -->
<section id="home">
<h1 class="p">Welcome to My Travel Blog</h1>
<p>Explore the world through my adventures and stories</p>
</section>
<hr>
<!-- Destinations Section -->
<h2 class="pop">Popular Destinations</h2>
<section id="destinations">
<div class="destination">
<img src="Beach.jpg" alt="Destination 1" width="600">
<h3 style="text-align: center; padding-top: 30px; color: rgb(0, 159, 250);">Amazing Beach Paradise</h3>
<p style="text-align: center; padding-top: 10px;">Experience the stunning beaches and crystal-clear waters.</p>
</div>
<div class="destination" id="des2">
<img src="Waterfall.jpg" alt="Destination 2" width="600" >
<h3 style="text-align: center; padding-top: 30px; color: rgb(0, 159, 250);">Majestic Mountain Waterfall</h3>
<p style="text-align: center; padding-top: 10px;" >Escape to the mountains and enjoy breathtaking views.</p>
</div>
</section>
<hr>
<!-- About Section -->
<section id="about">
<h1 class="abo" style="color: rgb(255, 30, 30);">About Me</h1>
<h3 style="text-align: center; color: rgb(58, 109, 250);">Avanish Pal, The Adventurous Explorer</h3>
<p style="padding-right: 400px; padding-left: 400px;">Greetings, fellow explorers! the face and storyteller behind the lens at [Your Vlog Name]. As a travel vlogger based in India, my mission is simple - to unravel the beauty of adventurous destinations and share those experiences with you.</p>
</section>
<hr>
<!-- Contact Section -->
<section id="contact" style="text-align: center;">
<h2 style="color: brown;">Contact Me</h2>
<p style="color: fuchsia;">Have questions or want to share your own travel stories? Feel free to reach out!</p>
<form style="padding-left: 660px;">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required placeholder="Enter Your Name">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required. placeholder="Enter Your Email">
<textarea id="message" name="message" placeholder="Write your message..." required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<div class="footer-content">
<p>© 2024 Your Travel Vlog | Designed by Avanish Pal</p>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Adventures</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</footer>
</body>
</html>