-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (63 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="logo">Syed Mahee</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#experiences">Experiences</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Home Section -->
<div id="home">
<video src="home.mp4" autoplay muted playsinline></video>
</div>
<!-- About Section -->
<div id="about">
<video src="about1.mp4" autoplay muted playsinline></video>
</div>
<div class="divider"></div> <!-- Divider between sections -->
<!-- Experience Section -->
<div id="experiences">
<video src="about2.mp4" autoplay muted playsinline></video>
<video src="about3.mp4" autoplay muted playsinline></video>
</div>
<!-- Projects Section -->
<section id="projects">
<video autoplay muted playsinline>
<source src="projects.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact Me</h2>
<p>I'd love to hear from you! Please fill out the form below to get in touch.</p>
<form id="contact-form" method="POST" action="/.netlify/functions/contact">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" placeholder="Your Full Name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Your Email Address" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</section>
</body>
</html>