-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (45 loc) · 1.39 KB
/
contact.html
File metadata and controls
45 lines (45 loc) · 1.39 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
<html>
<head>
<title>Contact Me!</title>
<link rel='stylesheet' href="styles.css">
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">VISHAL'S LOFT</a>
</h1>
<ul class="nav-list">
<li><a href="index.html">HOME</a></li>
<li><a href="blog.html">BLOG</a></li>
<li><a href="portfolio.html">PORTFOLIO</a></li>
<li><a href="resume.html">RESUME</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<main>
<div class="floating-tile">
<div class="tile-text">
<h2 class="tile-heading">Get In Touch!</h2>
<form id="contact-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required />
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<div class="button-container">
<button type="submit" class="cta-button">Send Message</button>
</div>
</form>
</div>
</div>
</main>
<footer class="footer">"2025 Vishal's Loft | No Rights Reserved"</footer>
</body>
</html>