-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
73 lines (73 loc) · 2.4 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tourist Facts</title>
<meta
name="description"
content="Some facts about the arguably most prominent competitive of all time."
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/brands.min.css"
integrity="sha512-lCU0XyQA8yobR7ychVxEOU5rcxs0+aYh/9gNDLaybsgW9hdrtqczjfKVNIS5doY0Y5627/+3UVuoGv7p8QsUFw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/styles.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-XPKK751Q4P"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-XPKK751Q4P");
</script>
<link rel="shortcut icon" href="./img/favicon.ico" />
</head>
<body>
<div class="wrapper-body">
<div class="fact-wrapper">
<div class="navbar">
<div class="navbar-left">
<a href="https://github.com/diksown/touristfacts">
<i class="fab fa-github"></i>
</a>
</div>
<div class="navbar-right">
<span class="material-icons" id="prev">arrow_back</span>
<span class="material-icons" id="rand">casino</span>
<span class="material-icons" id="next">arrow_forward</span>
</div>
</div>
<div class="fact" id="fact-id">Loading fact...</div>
<div class="description">
<div class="author">
By <a href="https://github.com/diksown" id="author-id">@diksown</a>
</div>
<a
href="https://github.com/diksown/touristfacts/blob/main/README.md"
target="_new"
>
<div class="suggestion">
<span class="material-icons">lightbulb</span>
Suggest a fact
</div>
</a>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>