-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
85 lines (80 loc) · 3.26 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
80
81
82
83
84
85
<!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">
<link rel="icon" type="img/x-icon" href="img/portfolio-favicon.ico">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.production.css">
<title>Dörthe Kosicki - Portfolio!</title>
</head>
<body>
<!-- Header including the logo and the main navigation -->
<header class="page-header">
<a href="index.html"><img src="img/dk-logo.png" alt="logo of Dörthe Kosicki" class="page-header__item logo"></a>
<!-- Hamburger Icon -->
<div id="hamburger-icon" class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<!-- Navigation Links -->
<nav class="main-navigation page-header__item">
<div class="container highlightTextOut">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item">About Me</a>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item">Projects</a>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item--active">Say hi!</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Main content -->
<main>
<div class="profile">
<h1>Let's Connect!</h1>
<p>Have a question or want to work together? I'd love to hear from you!</p>
</div>
<div class="form-container">
<div class="contact-me-wrapper">
<!-- Your static contact information if any -->
</div>
<div class="form-wrapper">
<form action="https://formspree.io/f/mqkrpzbn" method="POST">
<label class="standard-label" for="name">Name: </label>
<input type="text" id="name" name="name" class="standard-input" required>
<label class="standard-label" for="email">Email: </label>
<input type="email" id="email" name="_replyto" class="standard-input" required>
<label class="form-message" for="message">Message: </label>
<textarea id="message" name="message" class="standard-textarea" required></textarea>
<br>
<input class="button" type="submit" value="Send message">
</form>
</div>
</div>
</main>
<!-- Footer with links to social media profiles -->
<footer class="page-footer">
<div class="social-media">
<p>Find me on</p>
<a href="https://github.com/codestun" target="_blank"><img src="img/github-logo.svg" alt="Github"></a>
<a href="https://www.linkedin.com/in/dörthe-kosicki/" target="_blank"><img src="img/linkedin-logo.svg"
alt="LinkedIn"></a>
</div>
</footer>
<script src="js/main.js"> </script>
<script src="js/tota11y.min.js"></script>
</body>
</html>