-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
72 lines (57 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width= , initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<title>Document</title>
<style>
@keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
}
}
</style>
</head>
<body class="body">
<header class="header">
<h3 class="title">Abel Teenstra's portfolio</h3>
</header>
<nav id="navbar">
<a href="index.html">Home</a>
<a href="work.html">Work</a>
<a href="contact.html">Contact</a>
</nav>
<h2 class="title-contact">contact</h2>
<section class="contactForm">
<form action="portfolio.html">
<div class="formField">
<label for="firstName">Naam</label>
<input type="text" id="firstName" name="firstName" placeholder="Voer uw naam in" required>
</div>
<div class="formField">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="formField">
<label for="email">Reden van contact</label>
<input type="text" id="forum" name="forum" placeholder="Voer uw vraag in" required>
</div>
<div>
<button>Verzenden</button>
</div>
</form>
</section>
<footer>
<nav id="footernav">
<a href="#"> Instagram</a>
<a href="#"> Twitter</a>
<a href="#"> Linkedin</a>
</nav>
</footer>
</body>
</html>