-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.htm
116 lines (108 loc) · 3.77 KB
/
index.htm
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Prosser Unblocked Games</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Homebrew, tools and game development. Occasionally web development.">
<meta name="og:title" content="Prosser Unblocked Games">
<meta name="og:description" content="Modding, tools and game development. Occasionally web development.">
<meta name="og:type" content="product">
<meta name="og:site_name" content="Prosser Unblocked Games">
<meta name="og:url" content="https://landonperkinsprosser.github.io/Prosser-Unblocked-Games/">
<link rel="stylesheet" href="assets/css/style.css?v1.1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo:ital@0;1&display=swap" rel="stylesheet">
<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">
<script src="assets/js/base.js?v1.2"></script>
<script src="assets/js/router.js"></script>
<style>
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle; border-radius: 10px;}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active {
background-color: #717171;
}
/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.text {font-size: 11px}
}
</style>
</head>
<body>
<header>
<div id="top-bar">
<div id="top-bar-title">
<a href="">
<img class="logo" src="assets/svg/logo_notext.svg?v1.1" />
<img class="logo-sm" src="assets/svg/logo.svg?v1.1" />
</a>
<h1 class="logo-title">Prosser Unblocked Games</h1>
</div>
<ul id="top-bar-menu">
<li><a href="">Home</a></li>
<li><a href="#/games">Games</a></li>
<li><a href="#/contact">Contact</a></li>
</ul>
</div>
</header>
<main id="main-content">
</main>
<footer id="footer">
<p>
<a href="#/contact">
Contact<br>
</a>
<span>© 2024 - Prosser</span>
</p>
</footer>
</body>
</html>