-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (68 loc) · 3.38 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Feast and Wonder</title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<div class="skip-to-main">
<a href="#main">Skip to main content</a>
</div>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="seoul.html">Seoul</a></li>
<li><a href="paris.html">Paris</a></li>
<li><a href="visuals.html">Visuals</a></li>
<li><a href="prototypes.html">Prototypes</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<nav class="breadcrumbs">
<ul>
<li><a href="index.html">Home</a></li>
<li>Contact</li>
</ul>
</nav>
</header>
<main id="main">
<section class="grid-contact"> <!--For the layout of the page-->
<h1 class="city-name">Contact me</h1>
<form method="post"> <!--setting the request method for the browser to use-->
<div class="form-section" aria-labelledby="first-name"> <!--Adding aria label for accessibility-->
<label for="first-name">Name</label>
<input id="first-name" name="first-name" type="text" placeholder="Enter your first name">
</div>
<div class="form-section" aria-labelledby="last-name">
<label for="last-name">Last Name</label>
<input id="last-name" name="last-name" type="text" placeholder="Enter your last name">
</div>
<div class="form-section" aria-labelledby="email">
<label for="email">Email address</label>
<input id="email" name="email" type="email" placeholder="Enter your e-mail address"> <!--type attribute for safety-->
</div>
<div class="form-section" aria-labelledby="message">
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Enter your message"></textarea>
</div>
<div class="button">
<button aria-label="submit form" type="submit">Submit</button>
</div>
</form>
</section>
</main>
<footer>
<h2>Want to see more?</h2>
<hr>
<ul class="socials">
<li><a href="http://www.example.org"><img src="images/icons8-instagram-96.png" width="96" height="96" alt="Instagram icon"></a></li>
<li><a href="http://www.example.org"><img src="images/icons8-facebook-96.png" width="96" height="96" alt="Facebook icon"></a></li>
<li><a href="http://www.example.org"><img src="images/icons8-pinterest-96.png" width="96" height="96" alt="Pinterest icon"></a></li>
<li class="attribution"> <a href="https://icons8.com/icon/84884/instagram">Instagram</a>,<a href="https://icons8.com/icon/118487/facebook">Facebook</a>,<a href="https://icons8.com/icon/87072/pinterest">Pinterest</a>icons by<a href="https://icons8.com">Icons8</a></li>
</ul>
</footer>
</body>
</html>