-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
55 lines (48 loc) · 1.85 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
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/favicon.svg" type="image/x-icon">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Alex Mosely - digital artist</title>
</head>
<body>
<header>
<img src="assets/site-logo.svg" alt="Alex Mosely logo" class="logo" />
<nav>
<a href="index.html">Home</a>
<a href=" about.html">About</a>
<a href="contact.html" class="selected">Contact</a>
</nav>
</header>
<main>
<section class="contact">
<div class="form">
<form action="https://formspree.io/f/moqrgaky" method="POST">
<label>
name
<input type="text" name="name">
</label>
<label>
email
<input type="email" name="email">
</label>
<label>
message
<textarea name="message"></textarea>
</label>
<button type="submit">Send</button>
</form>
</div>
</section>
</main>
<footer class="footer">
<a href="#"><img src="assets/facebook.svg" alt="facebook"></a>
<a href="#"><img src="assets/instagram.svg" alt="instagram"></a>
<a href="#"><img src="assets/twitter.svg" alt="twitter"></a>
</footer>
</body>
</html>