-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·65 lines (65 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A portfolio website of nature photographer Steffen Østli">
<meta name="keywords" content="Photography, Portfolio, Landscape">
<meta name="author" content="Max Lockwood">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Steffen Østli Photography</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,800&display=swap" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css">
<link rel="stylesheet" type="text/css" href="CSS/normalize.css">
<link rel="stylesheet" type="text/css" href="CSS/main.css">
<link rel="stylesheet" type="text/css" href="CSS/styles.css">
</head>
<body>
<!-- Navigation -->
<header>
<nav id="pageNav">
<label for="hamburger">☰</label>
<input type="checkbox" id="hamburger"/>
<a href="index.html" id="logo">Steffen Østli</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="https://www.flickr.com/photos/steffos_1986/" target="blank">Flickr</a></li>
</ul>
</nav>
</header>
<!-- Main content of the website -->
<main class="grid">
<!-- Steffen Østli Monochrome Photography Images -->
<img src="https://i.imgur.com/3TTw5mB.jpg?1" alt="Crashing waterfall next to a forest">
<img src="https://i.imgur.com/7HSElJ2.jpg?1" alt="Long exposure of a stone bridge">
<img src="https://i.imgur.com/xA4kMhx.jpg?1" alt="Long exposure of a waterfall crashing onto rocks">
<img src="https://i.imgur.com/LbKy0f3.jpg?1g" alt="Macro photo of a tiny mushroom">
<img src="https://i.imgur.com/npTp6Co.jpg?1" alt="Photogtapher crouched on a rock gazing at the mountains">
<img src="https://i.imgur.com/5nUJ626.jpg?1" alt="Marco photo of raindrops on a dandylion">
<img src="https://i.imgur.com/XAqUy3D.jpg?1" alt="Finnish lapdog peppered with snowflakes">
<img src="https://i.imgur.com/FbgJxXG.jpg?1" alt="Norwegian church covered in snow">
<img src="https://i.imgur.com/NBhNsvB.jpg?1" alt="An abandoned old derelict building">
<img src="https://i.imgur.com/6auO5nU.jpg?1" alt="A close-up photo of frozen ice">
<img src="https://i.imgur.com/ge82ANB.jpg?1" alt="A tiny wooden cabin in a snowy pine forest">
<img src="https://i.imgur.com/mrEusrr.jpg?1" alt="A snowy Norwegian winter river landscape">
</main>
<script src="script.js"></script>
</body>
<footer>
<div class="footerSocialIcons">
<h3>Follow Me</h3>
<ul class="footerIcons">
<li><a href="https://www.facebook.com/steffen.ostli" class="fab fa-facebook-square fa-2x" target="blank" alt="Facebook Logo" aria-label="facebook"></a></li>
<li><a href="https://www.flickr.com/photos/152681664@N02/" class="fab fa-flickr fa-2x" target="blank" alt="Flickr Logo" aria-label="flickr"></a></li>
</ul>
</div>
<div class="contact">
<h3>CONTACT</h3>
<p>Email: <a href="mailto:steffen@østli.com">steffen@østli.com</a></p>
<p>Phone: <a href="tel: 004748354744">+47 483 547 44</a></p>
<p>Copyright © <span class="newYear"></span> Steffen Østli</p>
</div>
</footer>
</html>