generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetectives.html
72 lines (71 loc) · 2.35 KB
/
detectives.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
<!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="A Top Trumps-style card game featuring the world's greatest (fictional!) detectives."
/>
<meta
name="keywords"
content="game, card game, detectives, sleuth, top trumps"
/>
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- Fav Icon credit: https://tinyurl.com/2s4k8tyh-->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<link rel="manifest" href="site.webmanifest" />
<!-- Font Awesome Script -->
<script
src="https://kit.fontawesome.com/32eb0f11a8.js"
crossorigin="anonymous"
></script>
<title>Sleuth.</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Sleuth.</h1>
</a>
<div class="header-buttons">
<a
class="home-button"
href="index.html"
aria-label="Return to Sleuth landing page"
>
<i class="fa-solid fa-arrow-left-long"></i>
</a>
</div>
<div class="stripe stripe-red"></div>
<div class="stripe stripe-green"></div>
<div class="stripe stripe-blue"></div>
</header>
<!-- Main Listing -->
<main id="detectives-listing"></main>
<footer>
<div class="footer-top">
<a
href="https://github.com/denham-ed/sleuth"
target="_blank"
aria-label="Visit the GitHub repository for this project (opens in a new window)"
>
<i class="fa-brands fa-github footer-logo"></i>
</a>
<a
href="https://www.linkedin.com/in/ed-denham-313743153/"
target="_blank"
aria-label="Visit the LinkedIn profile for Ed Denham (opens in a new window)"
>
<i class="fa-brands fa-linkedin footer-logo"></i
></a>
</div>
<div class="footer-bottom">Designed by Ed Denham</div>
</footer>
<script src="assets/js/detectives.js"></script>
<script src="assets/js/detectives-page.js"></script>
</body>
</html>