-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
57 lines (53 loc) · 1.99 KB
/
contact.html
File metadata and controls
57 lines (53 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<meta name="description" content="Here you can see how I made an ugly contact for that doesnt even work">
<meta name="keywords" content="contact template page web markup">
<meta name="author" content="Arno Keesman">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="icon" type="image/png" href="img/favicon.png">
<title>contact pagina</title>
</head>
<body class="contactPage">
<header>
<img src="img/favicon.png" alt="website logo" title="website logo">
<h1>well figure something out</h1>
<h2>what is a payoff supposed to mean in this context?</h2>
<nav>
<input type="checkbox" id="menuCheckbox">
<ul>
<li><a href="index.html">home</a></li>
<li><a href="product.html">product</a></li>
<li><a href="pricing.html">pricing</a></li>
<li><a href="contact.html" class="active">contact</a></li>
</ul>
</nav>
</header>
<main>
<p>making contact information public as plain text is just asking for spam.</p>
<form>
<fieldset>
<legend>your info</legend>
<label for="name">name:</label>
<input id="name" name="name" type="text">
<label for="email">your email address</label>
<input id="email" name="email" type="email">
</fieldset>
<label for="message">message</label>
<textarea id="message" name="message" rows="20" cols="50"></textarea>
<input type="submit" value="Send">
</form>
<aside>
<a href="https://inholland.nl/"><img src="img/placeholder.svg" title="placeholder image" alt="placeholder image"></a>
<a href="https://inholland.nl/"><img src="img/placeholder.svg" title="placeholder image" alt="placeholder image"></a>
<a href="https://inholland.nl/"><img src="img/placeholder.svg" title="placeholder image" alt="placeholder image"></a>
</aside>
</main>
<footer>
<p id="cookieStatement">Cookie statement</p>
<p>© 2022 Arno Keesman (705693)</p>
</footer>
</body>
</html>