-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
68 lines (68 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./sass/main.css" />
<title>Contact</title>
</head>
<body class="contact">
<main>
<h1>Conn<span class="mirror">e</span>ct</h1>
<h2></h2>
<div class="wrapper">
<div class="address">
<div class="card details tile">
<h3>Details</h3>
<p>
You want to get in touch? You have a work oppportunity? Or you
just want to say hi? Don't hesitate, I like it when people say hi!
</p>
<p class="right">
K. S. <br />Random Street 7<br />12345 Random Town
</p>
<p class="right">+49 123 1234567 <br />example@email.com <br /></p>
</div>
</div>
<div class="form-wrapper">
<h3>Drop me a line!</h3>
<form action="https://formspree.io/f/xgegzorp" method="post">
<input
type="text"
name="name"
id="name"
placeholder="Name..."
required
/>
<input
type="email"
name="email"
id="email"
placeholder="Email..."
required
/>
<textarea
name="message"
id="message"
rows="10"
placeholder="Your message..."
></textarea>
<!-- attach document -->
<div class="btns">
<button type="submit">Send</button>
</div>
</form>
</div>
</div>
<div class="footer">
<a href="./index.html" class="back">BACK</a>
</div>
</main>
</body>
</html>