generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (58 loc) · 2.98 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Flat by the Cemetery, Art and Illustration by David C. O'Gara">
<meta name="keywords"
content="Flat by the Cemetery, art, comic art, illustration, David C. O'Gara, portfolio, gallery">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes, maximum-scale=10">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Favicon links courtesy of https://favicon.io/favicon-converter/ -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/assets/favicon/site.webmanifest">
<title>Flat by the Cemetery</title>
</head>
<body>
<!-- div container is for the background image on index only -->
<div id="index-background">
<header>
<!-- This is for the h1 logo in the heading -->
<h1><a href="index.html">Flat by the Cemetery</a></h1>
<!-- Navigation links here -->
<nav>
<span>
<a href="index.html" class="active-link">Home</a>
<a href="gallery.html">Gallery</a><br>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</span>
</nav>
</header>
<!-- div container with the a brief description of the site here -->
<div id="tagline-box">
<p>Art and illustration <br>by David C. O’Gara. <br>Based in Derbyshire, UK.</p>
</div>
<!-- footer section here with social links and copyright reminder -->
<footer>
<!-- Social links using icons from fontawesome.com/ -->
<span id="social-links">
<a href="https://instagram.com/flatbythecemetery" target="_blank" rel="noopener"
aria-label="Vist our Instagram page (opens in a new tab)">
<i class="fa-brands fa-instagram" title="fontawesome Instagram logo"></i>
</a>
<a href="https://youtube.com/channel/UC8wHcC0aB9f6SX9jpmDqKBA" target="_blank" rel="noopener"
aria-label="Vist our Youtube page (opens in a new tab)">
<i class="fa-brands fa-youtube" title="fontawesome Youtube logo"></i>
</a>
</span>
<!-- A brief paragraph delaring copyright for the sites images -->
<p id="copyright-text">All images Copyright (C) <br>David C. O'Gara.</p>
</footer>
<!-- /div ends the background image container from start of body -->
</div>
<!-- script line below to allow for fontawesome icons -->
<script src="https://kit.fontawesome.com/5216db6454.js" crossorigin="anonymous"></script>
</body>
</html>