-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (51 loc) · 1.81 KB
/
contact.html
File metadata and controls
53 lines (51 loc) · 1.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio | Bhavesh </title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="nav-left">
<div class="dot"></div>
<h2>Bhavesh kumar <span class="role">SDE</span></h2>
</div>
<div class="nav-right">
<a href="index.html">Overview</a>
<a href="resume.html">Resume</a>
<a href="projects.html">Project</a>
</div>
</nav>
<div class="container">
<div class="avatar-contact">✉️</div>
<div class="contact-title">Contact Me</div>
<div class="contact-desc">
Feel free to reach out for collaborations, robotics consultation, or tech talk.
You can use the form below or email directly.
</div>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your message..." required></textarea>
<center><button type="submit">Send Message</button></center>
</form>
<div class="contact-info">
Or email: <b>bavesh2006kumar@gmail.com</b>
<div class="socials">
<a href="https://github.com/Sam-bot-dev" class="social-link" title="GitHub">🐱</a>
<a href="https://www.linkedin.com/in/bhavesh-508307317/" class="social-link" title="LinkedIn">💼</a>
</div>
</div>
</div>
<script>
document.getElementById('contact-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you! Your message has been recorded for the portfolio demo.');
this.reset();
});
</script>
</body>
</html>