-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (61 loc) · 3.42 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
83
84
85
86
87
<!DOCTYPE html>
<!-- Main document. -->
<html lang="en" data-bs-theme="dark">
<!-- Header information. -->
<head>
<!-- HTML5 meta tags. -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Document information. -->
<title>Fullscreens</title>
<!-- CDN stylesheets. -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" integrity="sha256-9kPW/n5nn53j4WMRYAxe9c1rCY96Oogo/MKSVdKzPmI=" crossorigin="anonymous">
</head>
<!-- Page contents. -->
<body>
<!-- Fixed controls. -->
<div class="fixed-top m-3">
<!-- Left side. -->
<div class="float-start">
<!-- Home button. -->
<a href="index.html" class="btn btn-secondary shadow-sm px-2 py-1" type="button">
<i class="bi bi-house-fill"></i>
</a>
</div>
<!-- Right side. -->
<div class="float-end">
<!-- Theme toggle. -->
<button id="theme-button" class="btn btn-secondary shadow-sm px-2 py-1" type="button">
<i id="theme-icon" class="bi bi-moon"></i>
</button>
</div>
</div>
<!-- Page listing. -->
<div class="container px-3 py-5 text-center">
<!-- Title. -->
<h1 class="display-1 mb-3">Fullscreens</h1>
<p class="lead mb-5">
A collection of helpful fullscreen web apps.
</p>
<!-- List. -->
<p><a class="link-body-emphasis" href="countdown/index.html"><i class="bi bi-hourglass"></i> Countdown</a></p>
<p><a class="link-body-emphasis" href="notepad/index.html"><i class="bi bi-journal-text"></i> Notepad</a></p>
<p><a class="link-body-emphasis" href="scoreboard/index.html"><i class="bi bi-columns-gap"></i> Scoreboard</a></p>
<p><a class="link-body-emphasis" href="stopwatch/index.html"><i class="bi bi-stopwatch"></i> Stopwatch</a></p>
<p><a class="link-body-emphasis" href="upDownCounter/index.html"><i class="bi bi-arrow-down-up"></i> Up/Down Counter</a></p>
<p><a class="link-body-emphasis" href="wallClock/index.html"><i class="bi bi-clock"></i> Wall Clock</a><br></p>
</div>
<!-- Fixed information. -->
<div class="fixed-bottom m-3">
<!-- Right side: Copyright. -->
<div class="float-end small fw-light text-body-secondary">
©2024 - <a class="link-body-emphasis text-body-secondary link-underline link-underline-opacity-0 link-underline-opacity-75-hover" href="https://github.com/sykeben" target="_blank">github.com/sykeben</a>
</div>
</div>
<!-- CDN scripts. -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- Custom scripts. -->
<script src="theme.js"></script>
</body>
</html>