-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
93 lines (93 loc) · 4.42 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
83
84
85
86
87
88
89
90
91
92
93
<!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 class="active">
<a href="./index.html" title="Home">home</a>
</li>
<li>
<a href="./galleries.html" title="Galleries">galleries</a>
</li>
<li>
<a href="./about.html" title="About Me">about</a>
</li>
<li>
<a href="./contact.html" title="Contact">contact</a>
</li>
</ul>
</nav>
</header>
<main class="home">
<!-- background image container for desktop/landscape tablet -->
<section>
<div class="top line">
<!-- image visible on all devices -->
<div id="solo-image-container">
<img src="./assets/images/fox-600.jpg" alt="a coy fox licking its lips" id="main-image">
</div>
<!-- images only visible on large devices -->
<img src="./assets/images/crested-gecko-600.jpg" alt="a crested gecko licking its eye" class="desktop-home-image middle">
<img src="./assets/images/hooded-vulture-600.jpg" alt="a stern looking vulture" class="desktop-home-image">
</div>
<div class="bottom line">
<img src="./assets/images/crowned-crane-600.jpg" alt="a headshot of a crowned crane" class="desktop-home-image">
<img src="./assets/images/leopard-cub-600.jpg" alt="a leopard cub watching over" class="desktop-home-image">
</div>
<div id="overlay-text-container">
<h2>
katie horrocks photography
</h2>
<p>
when words are not enough
</p>
</div>
</section>
</main>
<footer class="home-page-sticky">
<!-- 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>