-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
100 lines (87 loc) · 4.42 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Ciara Snijders</title>
<meta name="description" content="This website will contain all information relating to Ciara's portfolio.">
<link rel="icon" type="image/jpeg" href="img/favicon-32x32.png" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="page-header">
<!-- Add logo here -->
<img src="img/Ciara_Snijders_logo.png" alt="Personal logo of Ciara Snijders, a circular text logo with my initials in the center and surrounded by text reading Ciara Snijders, Web Developer" class="page-header__item" width="60">
<nav class="main-navigation page-header__item">
<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">Work</a>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Contact</a>
</li>
</ul>
</nav>
</header>
<main class="page-container">
<h2>Contact</h2>
<br>
<p> Reach out! </p>
<article>
<a href="skype:ciarasnijders">Skype: ciarasnijders</a>
<br>
<a href="mailto:[email protected]"> Email: [email protected]</a>
</article>
<br>
<section>
<h3>Contact Form</h3>
<br>
<form class="row g-3" method="post" action="/login-form-action">
<div class="col-md-6" id="contact-form">
<label for="contact-name" class="form-label">Name</label>
<input type="text" class="form-control" id="contact-name" required>
</div>
<div class="col-md-6">
<label for="contact-email" class="form-label">Email</label>
<input type="email" class="form-control" id="contact-email" placeholder="[email protected]" required>
</div>
<div class="col-12">
<label for="contact-telephone" class="form-label">Telephone</label>
<input type="text" class="form-control" id="contact-telephone" placeholder="+31...." required>
</div>
<div class="col-12">
<label for="contact-message" class="form-label">Message</label>
<textarea class="form-control" maxlength="240" id="contact-message" required></textarea>
</div>
<div class="col-12">
</div>
<div class="col-12">
<button type="submit">Send message</button>
</div>
</form>
</section>
</main>
<footer class="page-footer">
<p>
Find me on
</p>
<div class="social-media">
<!-- Add Github logo image here -->
<a href="https://github.com/ciarasnijders"> <img src="img/img_svg/github_logo.svg" alt="Official Github logo"> </a>
<!-- Add LinkedIn logo image here -->
<a href="https://www.linkedin.com/in/ciara-snijders/"> <img src="img/img_svg/linkedin_logo.svg" alt="Official LinkedIn logo"> </a>
</div>
</footer>
<script src="js/tota11y.min.js"></script>
</body>
</html>