-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
36 lines (32 loc) · 1.05 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Contact</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Navigation Bar -->
<nav>
<a href="index.html"><button>Home</button></a>
<a href="about.html"><button>About</button></a>
<a href="contact.html"><button>Contact</button></a>
</nav>
<!-- Contact Section -->
<div class="container contact-section">
<h1>Contact Me</h1>
<form class="contact-form" action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send</button>
</form>
</div>
<!-- Include JavaScript file -->
<script src="script.js"></script>
</body>
</html>