-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (52 loc) 路 1.93 KB
/
Copy pathindex.html
File metadata and controls
63 lines (52 loc) 路 1.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>word salad word game</title>
<meta charset="UTF-8">
<meta name="description"
content="spelling letter and word puzzle - similar to NY Times Spelling Bee https://www.nytimes.com/puzzles/spelling-bee but all hand-made..."/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<link href="bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="css.css?v=5" rel="stylesheet" type="text/css"/>
<script src="client.js?v=5" type="module"></script>
<div class="container">
<img class="logo" src="/logo.png"/>
<h1>welcome to word salad 馃摉 馃</h1>
<div class="ltrs">
</div>
<form id="form" action="/">
<b>enter word:</b>
<input class="input" type="text" id="enter"></input>
<input class="btn btn-sm btn-primary" type="submit" value="ENTER"></input>
<input class="btn btn-sm btn-warning" type="button" value="DEL" id="del1"></input>
<b>score:</b>
<div id="score">0</div>
<div id="msg">
</div>
<input class="btn btn-sm btn-info" type="button" id="shuffle" value="shuffle"></input>
<input class="btn btn-sm btn-danger" type="button" id="spoil" value="spoiler"></input>
<input class="btn btn-sm btn-info" type="button" id="transfer" value="transfer game"></input>
</form>
<div id="found">
</div>
<div class="card card-body bg-dark">
<ul id="help">
</ul>
</div>
<div id="cite" class="card card-body bg-dark">
馃悵 very similar to
<a href="https://www.nytimes.com/puzzles/spelling-bee">
NY Times Spelling Bee
</a>
but all hand-made...
</div>
<div id="misc" class="card card-body bg-dark">
馃槏 <i>dedicated to sonia</i>.<br>
Word list from <a href="http://app.aspell.net/create">SCOWL</a>.<br>
Built with 馃 by <a href="https://traceypooh.com">@tracey_pooh</a> using
<a href="https://deno.land/">deno</a> 馃<br>
</div>
</div>
</body></html>