-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
69 lines (59 loc) · 2.73 KB
/
Copy pathcontact.html
File metadata and controls
69 lines (59 loc) · 2.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | My Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul class="navbar">
<li><a class="navbar-item" href="index.html">Home</a></li>
<li><a class="navbar-item" href="projects.html">Projects</a></li>
<li><a class="navbar-item" href="about.html">About</a></li>
<li><a class="navbar-item" href="certificates.html">Certificates</a></li>
<li><a class="navbar-item active-page" href="contact.html">Contact</a></li>
</ul>
<div class="container">
<header>
<h1>Contact Me</h1>
<p class="tagline">Let's connect and collaborate</p>
</header>
<section>
<h2>Get In Touch</h2>
<form class="contact-form" id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" class="form-control" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" class="form-control" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" class="form-control" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" class="form-control" rows="5" required></textarea>
</div>
<button type="submit" class="btn" id="submitBtn">Send Message</button>
<p id="formStatus" style="margin-top: 15px;"></p>
</form>
</section>
<section>
<h2>Find Me Online</h2>
<div class="social-links">
<p>GitHub: <a href="https://github.com/bufferfis" class="hub">@bufferfis</a></p>
<p>LinkedIn: <a href="#" class="hub">https://www.linkedin.com/in/samar-singh-17421b28b/</a></p>
</div>
</section>
</div>
<button class="mode-toggle" id="modeToggle">🌙</button>
<script src="script.js"></script>
</body>
</html>