friendly-words
Version:
The Glitch word list, packaged into an NPM module for easy use.
69 lines (63 loc) • 1.8 kB
HTML
<html lang="en">
<head>
<title>Welcome to Glitch!</title>
<meta name="description" content="A cool thing made with Glitch">
<link id="favicon" rel="icon" href="https://glitch.com/edit/favicon-app.ico" type="image/x-icon">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="/client.js" defer></script>
</head>
<body>
<header>
<h1>
A Dream of Words, Words, Words...
</h1>
</header>
<main>
<h2>
Word Pairs
</h2>
<pre id="word-pairs"></pre>
<h2>
Predicates
</h2>
<pre id="predicates"></pre>
<h2>
Objects
</h2>
<pre id="objects"></pre>
<h2>
Team Synonyms
</h2>
<pre id="teams"></pre>
<h2>
Team Pairs
</h2>
<pre id="team-pairs"></pre>
<h2>
Collection Synonyms
</h2>
<pre id="collections"></pre>
<h2>
Collection Pairs
</h2>
<pre id="collection-pairs"></pre>
<button onclick="getWords()">
More words, please.
</button>
</main>
<footer>
Made with <a href="https://glitch.com">Glitch</a>!
</footer>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js" data-style="glitch"></script>
</body>
</html>