-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en" class="d-flex h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web shorts</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⚙️</text></svg>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="theme.css" rel="stylesheet" />
<script type="module" src="darkModeSupport.js" defer></script>
</head>
<body class="flex-fill">
<a href="https://github.com/grimly/web-shorts" style="position: absolute; top: 0; right: 0;">
<img alt="Fork me on SGithub" src="github.svg">
</a>
<div class="container">
<div class="row justify-content-center">
<div class="col-8">
<h1 class="my-3">Web shorts</h1>
<div class="list-group bg-lvl1">
<a class="list-group-item list-group-item-action" href="encoding.html">
Encoding and Hashing
</a>
<a class="list-group-item list-group-item-action" href="formatJson.html">
JSON Formatter
</a>
<a class="list-group-item list-group-item-action" href="jwt.html">
JWT inspector
</a>
<a class="list-group-item list-group-item-action" href="openapiCleaner.html">
OpenAPI Cleaner
</a>
<a class="list-group-item list-group-item-action" href="password.html">
Password generator
</a>
<a class="list-group-item list-group-item-action" href="uuid.html">
UUID generator
</a>
</div>
</div>
<div class="col-8">
<h1 class="my-3">Mini games</h1>
<div class="list-group bg-lvl1">
<a class="list-group-item list-group-item-action" href="catchTheCheese.html">
🧀 Catch the cheese
</a>
</div>
</div>
</div>
</div>
</body>
</html>