generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
89 lines (77 loc) · 3.56 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
<!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">
<!-- Meta tags for search engines -->
<meta name="description" content="Photographer based in Hälsingland, Sweden">
<meta name="keywords" content="portfolio, photography, photo, gallery, wikström, wikstromphotos, wikstrom, hälsingland, sweden, gävleborg, bollnäs">
<!-- Title -->
<title>Wikström Photography - Contact</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/favicon/favicon.ico"/>
<!-- Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<a href="index.html" class="logo-link">
<div class="logo">
<h1 id="h1-wik">Wikström</h1>
<p id="h1-photo">Photography</p>
</div>
</a>
<input type="checkbox" id="nav-toggle" name="nav-toggle">
<label for="nav-toggle" class="nav-toggle-label"><i class="fa-solid fa-bars"></i></label>
<nav>
<ul id="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="contact.html" class="active">Contact</a>
</li>
</ul>
</nav>
</header>
<main class="main-contact">
<img
class="logotype"
src="assets/images/logotype.webp"
alt="Logotype"
>
<h1 class="h1-home">Capture the moment</h1>
<h2 class="h2-home">With a camera in hand</h2>
<div class="contactform-container">
<h2 class="h2-contact">Contact me</h2>
<form action="mailto:[email protected]" method="POST" enctype="text/plain" name="EmailForm" class="contact-form">
<input type="text" id="name" name="name" placeholder="Name">
<input type="email" id="email" name="email" placeholder="Email">
<textarea name="Message" rows="6" cols="25" placeholder="Your message..."></textarea>
<button type="submit" value="Submit">Send</button>
</form>
</div>
</main>
<footer class="footer">
<div class="footer-container">
<div><a href="https://www.facebook.com/wikstromphotos" target="_blank" rel="noopener"
aria-label="Visit my Facebook page (opens in a new tab)"><i class="fa-brands fa-facebook"></i></a></div>
<div><a href="https://twitter.com/wikstromphotos" target="_blank" rel="noopener"
aria-label="Visit my Twitter page (opens in a new tab)"><i class="fa-brands fa-twitter"></i></a></div>
<div><a href="https://www.instagram.com/wikstromphotos" target="_blank" rel="noopener"
aria-label="Visit my Instagram page (opens in a new tab)"><i class="fa-brands fa-instagram"></i></a></div>
</div>
<div class="footer-p">
<p><i class="fa-regular fa-copyright"></i>Wikström Photography</p>
</div>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/6999690225.js" crossorigin="anonymous"></script>
<!-- Ratufa back-end email -->
<script id="ratufa_loader" src="https://www.ratufa.io/c/ld.js?f=j6wf3fkp&n=n1.ratufa.io"></script>
</body>
</html>