-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
executable file
·58 lines (58 loc) · 2.95 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Steffen Østli Photography | About</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>
<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>
<div class="container">
<div class="aboutContent">
<div id="profilePic">
<img src="imgs/steffen.png" width="100px" height="100px" alt="Profile picture of Steffen Østli">
</div>
<br>
<p>
Hello! I am a nature photographer from Kolbu, constantly traveling around Norway showcasing the nature and landscape of this beautiful country. I love to take pictures, especially landscape and macro shots. I use both digital and analog equipment, with the use of vintage lenses on my DSLR.
</p>
<p>
I’ve had my photography published in various magazines and online publications such as NPhoto Magazine, Digital Photographer, Landscape Photography Magazine, CameraPixio and Resource Travel.
</p>
<h3>Education</h3>
<p>2008 - 2011 Bergen Academy of Art and Design</p>
<h3>Selected Awards & Exhibitions</h3>
<ul id="awards">
<li>2019 Norwegian Nature Photo Festival</li>
<li>2019 Sony World Photography Awards</li>
<li>2017 Best Photography Composition, "Waterfall in the forest"</li>
<li>2016 Råkvåg Art Exhibition</li>
<li>2014 NPPA Best of Photojournalism, 1st prize</li>
<li>2014 Pictures of the Year, Monochrome Photography Awards</li>
<li>2013 Pictures of the Year, Scandinavian Summer Edit</li>
<li>2011 Norwegian State Artist’s Exhibition</li>
</ul>
</div>
</div>
</main>
</body>
</html>