-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (43 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=0.75">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="menu">
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="contact.html" style="color: white;">Contact</a>
</div>
</header>
<main>
<h1>Contact</h1>
<div class="container" style="height:70vh;">
<div class="vert-center">
<div class="form-group">
<form action="https://formspree.io/f/moqyrddl"
onsubmit="this.submit(); this.reset(); return false;"
method="POST"
enctype="multipart/form-data"
name="EmailForm">
Name:<br>
<input type="text" name="Contact-Name"><br><br>
Email:<br>
<input type="email" name="Contact-Email"><br><br>
Message:<br>
<textarea name="Contact-Message" rows="6"></textarea><br><br>
<button type="submit" value="Submit">Send</button>
</form>
</div>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>