-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 3.36 KB
/
index.html
File metadata and controls
68 lines (67 loc) · 3.36 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
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<title>.:: Jumble Game::. </title>
<meta charset="utf-8">
<meta name="description" content="Jumble game: Unscramble these five words">
<meta name="author" content="Diego Lopez">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="static/estilo.css">
<link rel="stylesheet" type="text/css" href="https://ndlopez.github.io/static/burger.css">
</head>
<body>
<!--nav>
<div class="navlink inline-block">
<a title="Jumble Game" href="#" class="navlink-on">jumble game</a></div>
<div class="navlink inline-block"><a title="Home" href="/" class="navlink-off">home</a></div>
<div class="navlink inline-block"><a title="Research" href="/research" class="navlink-off">research</a></div>
<div class="navlink inline-block"><a target="_blank" title="Articles" href="https://ndzerglink.wordpress.com" class="navlink-off">articles</a></div>
<div class="navlink inline-block"><a title="About" href="/pages/about.html" class="navlink-off">about</a></div>
</nav-->
<nav class="top-nav">
<div><h2>Today's jumble</h2></div>
<input id="menu-toggle" type="checkbox"/><label class="menu-button-container" for="menu-toggle">
<div class="menu-button"></div>
</label>
<ul class="menu">
<li><a href="/">Home</a></li>
<li><a href="/research">Research</a></li>
<li><a href="../pages/projects.html">Projects</a></li>
<li><a href="https://ndzerglink.wordpress.com">Articles</a></li>
<li class="no-desktop"><a href="/web_player">Music</a></li>
<li><a href="/about.html">About</a></li>
</ul>
</nav>
<div class="clearfix">
<h3>Instructions:</h3>
<p> Unscramble these Jumbles, placing one letter on each square, to form ordinary words.<br>
Use DEL key to delete current letter. Use (temporarily) TAB key to input the next letter.<br>
The letter and bottom bar are colored in <span style="color:tomato;">Tomato</span>
when it is wrong, or in <span style="color:slateblue;">SlateBlue</span> when correct.<br>
<span>This site is best viewed on Firefox</span></p>
</div>
<main id="jumble_this_word"></main>
<div class="clearfix">
<p>Scrambled word game inspired by NewsRadio (S03EP04) TV sitcom.</p>
<p>Some words were scrapped from the Books: <em>Pride and Prejudice</em> by Jane Austen and <em>Zealot</em> by Reza Aslan.</p>
</div>
<address>
<hr>
<div class="row">
<div class="column align-left">
<p>
<a target="_blank" href="https://www.openstreetmap.org/search?query=35.17271%2C136.89547#map=18/35.17271/136.89547">Hello from N35 10' E136 54'</a></p>
</div>
<div class="column align-right">
<a class="mySNS" href="https://twitter.com/ndzerglink" target="_blank"><img src="static/twitter-logo.svg"/></a>
<a class="mySNS" target="_blank" href="https://github.com/ndlopez"><img src="static/github-logo.svg"/></a>
<a class="mySNS" target="_blank" href="https://linkedin.com/ndlopez"><img src="static/linkein-logo.svg" /></a>
</div>
</div>
</address>
<footer>
<p><span class="copy-left">©</span> 2025-02-25 ndzerglink</p>
</footer>
<script src="static/fetch_data.js"></script>
</body>
</html>