-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.54 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Bliss Board for C.A.R.E.</title>
</head>
<body>
<div class="content">
<h1>Bliss Board for C.A.R.E.</h1>
<div class="description">
<picture>
<source
media="(prefers-color-scheme: dark)"
srcset="images/eyes-dark.svg"
/>
<img
src="images/eyes.svg"
alt="Eyes surrounded by the digits 0-8."
class="eyes"
/>
</picture>
<p>
This is the unofficial site for C.A.R.E. to speed up bliss board
conversations. Type the code and see the corresponding words.
</p>
</div>
<div class="inputDiv">
<b><label for="input">Number:</label></b>
<input
type="number"
id="input"
min="0"
max="2330"
placeholder="0002"
autofocus
/>
</div>
<h2 id="output"><noscript>Please enable JavaScript</noscript></h2>
<fieldset id="history">
<legend>History</legend>
<ol reversed id="list"></ol>
</fieldset>
<footer>
<a href="https://samq64.github.io">Home</a>
| <a href="./scratch">Scratch version</a> |
<a href="https://github.com/Samq64/blissboard">Source code</a>
</footer>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>