-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
86 lines (86 loc) · 4.78 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
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
<!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 name="description" content="Katie Horrocks - Wildlife Photography, an introduction to me and my gallery">
<meta name="keywords" content="Katie Horrocks photography, KH photography, wildlife photography">
<meta name="theme-color" content="#ECC2C0">
<meta name="apple-mobile-web-app-status-bar-style" content="#ECC2C0">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="./assets/css/style.css">
<title>KH Photography</title>
</head>
<body>
<header>
<!-- pink section of header -->
<div id="header-pink">
<div>
<i class="fas fa-camera" aria-hidden="true"></i>
</div>
<div id="title-container">
<h1>katie horrocks</h1>
<h2>wildlife photography</h2>
</div>
<div id="header-image">
<!-- animal image -->
</div>
</div>
<!-- nav section of header -->
<nav>
<ul>
<li>
<a href="./index.html">home</a>
</li>
<li>
<a href="./galleries.html">galleries</a>
</li>
<li class="active">
<a href="./about.html">about</a>
</li>
<li>
<a href="./contact.html">contact</a>
</li>
</ul>
</nav>
</header>
<main class="about">
<div class="image-container">
<img src="assets/images/katie-lemur.jpg" alt="image of katie">
</div>
<p>
Hi, I am Katie Horrocks and I am a keen animal photographer. I enjoy taking photos of all varieties of animals and love sharing my work. I use a Nikon D500 camera with a wide array of lenses.<br>
I won Longleat's junior photography competition in 2016 and was shortlisted for, subsequently reaching the final of, the junior photographer of the year competition ran by the national history museum.
</p>
<p>
I do some volunteer work at a few local animal sanctuaries, this allows some great extra exposure time. I do a little commercial work for Exmoor zoo, including their calendars and promotional pamphlets. I have also had a few photographs transformed into mosaic puzzles which are available to buy via their website.
</p>
<p>
I help out with Rainbows, a fun and exciting programme for girls aged five to seven, linked with the Girl Guides. I am also an admin for a DayZ server, a computer game I play in my spare time.
</p>
<!-- links to related pages -->
<a href="https://www.mosaicraft.co.uk" target="_blank" rel="external" aria-label="mosaic craft puzzles (opens a new tab)">Mosaic Craft</a>
<a href="https://www.exmoorzoo.co.uk/" target="_blank" rel="external" aria-label="exmoor zoo's website (opens a new tab)">Exmoor Zoo</a>
<a href="https://store.steampowered.com/agecheck/app/221100/" target="_blank" rel="external" aria-label="Day Z game available via steam (opens a new tab)">DayZ</a>
</main>
<footer>
<!-- social links -->
<ul>
<li>
<a href="https://twitter.com/Katiezoophotog1" title="Twitter" aria-label="katie on twitter (opens a new tab)" rel="noopener" target="_blank"><i class="fab fa-twitter-square" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://instagram.com/kh_zoo_photography/" title="Instagram" aria-label="katie on instagram (opens a new tab)" rel="noopener" target="_blank"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://facebook.com/khanimals" title="Facebook" aria-label="katie on facebook (opens a new tab)" rel="noopener" target="_blank"><i class="fab fa-facebook-square" aria-hidden="true"></i></a>
</li>
</ul>
<!-- copyright info -->
<span>©DaveyJH <a href="https://linkedin.com/in/davejhorrocks" target="_blank" rel="noopener author" aria-label="linked in profile (opens a new tab)" title="DJH - LinkedIn"><i class="fab fa-linkedin" aria-hidden="true"></i></a> <a href="https://github.com/daveyjh" target="_blank" rel="noopener author" aria-label="github profile (opens a new tab)" title="DJH - GitHub"><i class="fab fa-github" aria-hidden="true"></i></a></span>
</footer>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/c65630dc42.js" crossorigin="anonymous"></script>
</body>
</html>