-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
246 lines (212 loc) · 8.39 KB
/
index.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>APV | AKASH PRAJAPATI VLOGS</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* Global Styles */
body, html {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
section {
padding: 60px 0;
}
#photos img {
margin-bottom: 20px;
border-radius: 8px;
}
#videos iframe {
margin-bottom: 20px;
}
.navbar-nav .nav-item {
margin-left: 15px;
}
#contact {
background-color: #f9f9f9;
padding: 50px 0;
}
#contact .form-control {
border-radius: 10px;
}
#contact button {
background-color: #007bff;
color: white;
border-radius: 10px;
padding: 10px 20px;
}
footer {
background-color: #343a40;
color: white;
padding: 20px;
}
footer a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
color: #007bff;
}
/* Responsive Styles */
@media (max-width: 768px) {
#photos .col-md-4 {
margin-bottom: 30px;
}
#videos .col-md-6 {
margin-bottom: 30px;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">APV </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#photos">Photos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#videos">Videos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Greeting Section -->
<section id="greeting" class="text-center">
<div class="container">
<h1 class="display-4">Welcome to My Vlogging World!</h1>
<p>Check out my latest photos and videos below!</p>
</div>
</section>
<!-- Photo Section -->
<section id="photos" class="py-5">
<div class="container">
<h2 class="text-center mb-4">Photo Gallery</h2>
<div class="row">
<div class="col-md-4">
<img src="IMG-20240118-WA0027.jpg" class="img-fluid" alt="Photo 1">
</div>
<div class="col-md-4">
<img src="IMG-20240118-WA0029.jpg" class="img-fluid" alt="Photo 2">
</div>
<div class="col-md-4">
<img src="D:\MY ALL PROJECTS\vlogger site\IMG20240701095422.jpg" class="img-fluid" alt="Photo 3">
</div>
<div class="col-md-4">
<img src="D:\MY ALL PROJECTS\vlogger site\1000044550.jpg" class="img-fluid" alt="Photo 3">
</div>
<div class="col-md-4">
<img src="D:\MY ALL PROJECTS\vlogger site\1717458996467.jpg" class="img-fluid" alt="Photo 3">
</div>
<div class="col-md-4">
<img src="D:\MY ALL PROJECTS\vlogger site\IMG_20231025_201348.jpg" class="img-fluid" alt="Photo 3">
</div>
</div>
</div>
</section>
<!-- Video Section -->
<section id="videos" class="py-5 bg-light">
<div class="container">
<h2 class="text-center mb-4">Latest Videos</h2>
<div class="row">
<div class="col-md-6">
<iframe width="560" height="315" src="https://www.youtube.com/embed/PlEqhYDS17k?si=D91zviBw3Asc-vnU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="col-md-6">
<iframe width="100%" height="315" src="https://youtube.com/@akashprajapativlogs76?si=uFzUt7kzV5mSv7gZ" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-5">
<div class="container">
<h2 class="text-center mb-4">About Me</h2>
<p class="text-center">
Namaste! Akash Prajapati Vlogs mein aapko Goa ki khoobsurat safar ki har ek baat milegi. YouTube, Instagram, aur website ke zariye Goa ke raw adventure aur local experiences ko explore karein. Goa ko naye nazariye se dekhne ka yeh ek anokha safar hai!
</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-5 bg-light">
<div class="container">
<h2 class="text-center mb-4">Contact Me</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="Your Email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</section>
<footer class="py-3 bg-dark text-light text-center">
<div class="container">
<p>Follow me on social media:</p>
<a href="https://wa.me/+916299427330" class="text-light mx-2" target="_blank">
<i class="fab fa-whatsapp"></i> WhatsApp
</a>
<a href="https://www.instagram.com/prajapati_akash76" class="text-light mx-2" target="_blank">
<i class="fab fa-instagram"></i> Instagram
</a>
<a href="https://youtube.com/@akashprajapativlogs76?si=mr0YvaGJeN7T8lzK" class="text-light mx-2" target="_blank">
<i class="fab fa-youtube"></i> YouTube
</a>
<br><br>
<p class="mt-3">© 2024 All Rights Reserved. Vlogger Akash Prajapati.</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script>
document.querySelector("form").addEventListener("submit", function(event) {
event.preventDefault();
let name = document.getElementById("name").value;
let email = document.getElementById("email").value;
let message = document.getElementById("message").value;
if (name === "" || email === "" || message === "") {
alert("Please fill in all fields.");
} else {
alert("Thank you for contacting me!");3
document.getElementById("name").value = "";
document.getElementById("email").value = "";
document.getElementById("message").value = "";
}
});
// Navbar Smooth Scrolling
document.querySelectorAll('.navbar-nav a').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>