-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
79 lines (72 loc) · 3.08 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
78
79
<!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="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/9714473654.js" crossorigin="anonymous"></script>
<title>Alexander Friedrich - contact</title>
</head>
<body class="bodyphoto">
<div id="page-container">
<div id="content-wrap">
<header>
<nav>
<ul>
<li class="item">
<a href="index.html">Home</a>
</li>
<li class="item">
<a href="gallery.html">Gallery</a>
</li>
<li class="item">
<a href="#.html">Contact</a>
</li>
</ul>
</nav>
</header>
</div>
<main>
<div class="container">
<div style="text-align:center">
<h1>CONTACT</h1>
<p class="contact-question">Would you like to realise your dream jewellery? Contact me!</p>
</div>
<div class="rowcontact">
<div class="columncontact contact-photo">
<img src="./pictures/profile-contact.jpeg" style="width:100%" id="contact-photo"alt="the artist's profile smiling">
</div>
<div class="columncontact columnbox">
<form action="https://formspree.io/f/mnqlqkba" method="POST">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name" required>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name" required>
<label for="email">Your e-mail</label>
<input type="text" name="_replyto" required>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write a message" style="height:170px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</main>
<footer id="footer">
<div id="footer-wrap">
<section class="icons">
<a href="https://de.linkedin.com/in/alexander-friedrich-592182ba">
<i class="fab fa-linkedin fa-2x space"></i>
</a>
<a href="https://www.facebook.com/alexander.friedrich.3726">
<i class="fab fa-facebook fa-2x space"></i>
</a>
</section>
<section>
<p id="footer-name">©Alexander Friedrich</p>
</section>
</div>
</footer>
</div>
</body>
</html>