generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (70 loc) · 3.03 KB
/
index.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
<!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 - Home</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" class="active">Home</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<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="facebook-feed">
<!-- Juicer.io script -->
<script src="https://www.juicer.io/embed/wikstrom-photography-e15129ef-3741-4e3c-b0d7-c1fc1e9d40e5/embed-code.js" async defer></script>
</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>
</body>
</html>