-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
51 lines (43 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="icon" href="assets/images/Colorist_Square.jpg">
</head>
<body>
<header>
<img src="assets/images/LOGO.png">
<nav>
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="about.html">About Me</a>
<b href="contact.html">Contact</b>
</nav>
</header>
<section id="contact">
<h2>Let's Talk!</h2>
<p>Have a project in mind? Reach out to me.</p>
<form action="https://formspree.io/f/mnnparel" method="POST">
<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" class="limited-resize" required></textarea>
</div>
<button type="submit">Send</button>
</form>
</section>
<footer>
<p>© 2025 Adam Blair-Smith</p>
</footer>
</body>
</html>