-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
82 lines (78 loc) · 4.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
<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>big rat's emporium</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link href="./resources/favicon.ico" rel="icon" type="image/x-icon">
</head>
<body data-bs-theme = "dark">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<nav class="navbar navbar-expand-lg bg-primary-subtle">
<div class="container-fluid">
<a class="navbar-brand">
<img src="./resources/icon.png" alt="Logo" width="28" height="28" class="d-inline-block align-text-top">
big rat's emporium
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="flashgames.html">Flash Games</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="htmlgames.html">HTML5 Games</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Extras
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="dosgames.html">JS-DOS</a> <a class="dropdown-item" href="freddygame.html">FNAF Demos</a>
</li>
</ul>
</li>
<button onclick="location.href=('https://github.com/bigratiscool/bigratemporium')" class="btn btn-sm btn-outline-secondary" type="button" ref="https://github.com/bigratiscool/bigratemporium">GitHub Repository</button>
<div class="form-check form-switch mx-4">
<input
class="form-check-input p-2"
type="checkbox"
role="switch"
id="flexSwitchCheckChecked"
checked
onclick="enableDisable()"
>
<script>
function enableDisable() {
var element = document.body;
element.dataset.bsTheme =
element.dataset.bsTheme == "light" ? "dark" : "light"; }
</script>
</div>
</ul>
</div>
</div>
</nav>
<div style="justify-content: center; align-items: center; display: flex; padding-top: 100px;">
<img src="./resources/icon.png" alt="big rat icon" width="128" height="128">
</div>
<div style="justify-content: center; align-items: center; display: flex; padding-top: 10px;">
<h1>big rat's emporium</h1>
</div>
<div style="justify-content: center; align-items: center; display: flex; padding-top: 5px; padding-left: 50px; padding-right: 50px;">
<p1>This is a work-in-progress game website that you and myself can use on any computer.<br></p1>
</div>
<div style="justify-content: center; align-items: center; display: flex; padding-left: 50px; padding-right: 50px;">
<p1>This website contiants games in engines like Flash (running through ruffle) or standard HTML games you would see on any other website. In the future, I plan to add games in engines like JS-DOS.</p1>
</div>
</body>
</html>