-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
66 lines (65 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact</title>
<link rel="stylesheet" href="./styles/style.min.css">
<script src="./js/nav.js" defer></script>
</head>
<body>
<nav>
<div class="logo">
<a href="./index.html"> <h4>Péter Tauber</h4></a>
</div>
<ul class="nav-links">
<li><a href="./about.html">About</a></li>
<li><a href="./prints.html">Prints</a></li>
<li><a href="./paintings.html">Paintings</a></li>
<li><a href="./sculptures.html">Sculptures</a></li>
<li><a href="http://rostbrand.com" target="_blank">Design</a></li>
<li><a href="./contact.html" class="active">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<section class="contact">
<div class="text">
<form action="https://formspree.io/myynvoaj" method="POST">
<div class="form-name">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-email">
<label for="email">Email</label>
<input type="email" id="email" name="name" required>
</div>
<div class="message">
<label for="message">Message</label>
<textarea name="message" id="message" required></textarea>
</div>
<input type="submit" class="submit" value="SEND">
</form>
<span>or</span>
<p class="email"> [email protected]</p>
</div>
<div class="image">
<img src="./img/contact.jpg" alt="Tauber Peter">
</div>
</section>
<footer>
<div class="copyright">
<small>© Copyright 2020, Rostbrand</small>
</div>
<div class="social-media">
<a href="https://www.instagram.com/peter.tauber/" target="_blank"><img src="./img/insta.png" alt="instagram"></a>
<a href="https://www.facebook.com/peter.tauber.9" target="_blank"><img src="./img/facebook.png" alt="facebook"></a>
<a href="https://www.kunstabhinterhof.at/artist/peter-tauber/" target="_blank"><img src="./img/kah.png" alt="kunstabhinterhof"></a>
</div>
</footer>
</body>
</html>