codsworth-namegen/src/main/index.html

84 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Florine W. Dekker" />
<meta name="application-name" content="Codsworth name generator" />
<meta name="description"
content="Choose a fitting name for your Fallout 4 character that Codsworth can pronounce." />
<meta name="theme-color" content="#0033cc" />
<meta name="fwd:nav:target" content="#nav" />
<meta name="fwd:nav:highlight-path" content="/Tools/Codsworth Name Generator/" />
<meta name="fwd:footer:target" content="#footer" />
<meta name="fwd:footer:vcs-url" content="https://git.fwdekker.com/tools/codsworth-namegen/" />
<meta name="fwd:footer:version" content="v%%VERSION_NUMBER%%" />
<title>Codsworth name generator | FWDekker</title>
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/3.x.x/template.css?v=%%VERSION_NUMBER%%" />
<!--suppress HtmlUnknownTarget -->
<link rel="stylesheet" href="main.css?v=%%VERSION_NUMBER%%" />
<script async src="https://stats.fwdekker.com/count.js"
data-goatcounter="https://stats.fwdekker.com/count"></script>
</head>
<body>
<noscript class="fwd-js-notice">
<img src="https://stats.fwdekker.com/count?p=/tools/codsworth-namegen/" alt="Counting pixel" />
<p>
This website does not function if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
</p>
</noscript>
<nav id="nav"></nav>
<main class="container hidden">
<div role="document">
<section>
<header class="fwd-header">
<hgroup>
<h1><a href=".">Codsworth Name Generator</a></h1>
<h2>Choose a fitting name for your Fallout 4 character that Codsworth can pronounce.</h2>
</hgroup>
</header>
<div id="grid-container" class="grid">
<article>
<header>
<h2>Similar names</h2>
</header>
<label for="similar-input">Your name</label>
<input id="similar-input" type="text" autofocus />
<button id="generate-similar" type="button">Generate similar names</button>
<footer>
<label for="similar-names">Similar names are...</label>
<textarea id="similar-names" class="name-area" readonly></textarea>
</footer>
</article>
<article>
<header>
<h2>Random names</h2>
</header>
<button id="generate-random" type="button">Generate random name</button>
<footer>
<label for="random-names">Your random name is...</label>
<textarea id="random-names" class="name-area" readonly></textarea>
</footer>
</article>
</div>
</section>
<footer id="footer"></footer>
</div>
</main>
<script src="https://static.fwdekker.com/lib/template/3.x.x/template.js?v=%%VERSION_NUMBER%%"></script>
<!--suppress HtmlUnknownTarget -->
<script src="bundle.js?v=%%VERSION_NUMBER%%"></script>
</body>
</html>