Skip to content

Instantly share code, notes, and snippets.

@cakyus
Last active October 15, 2019 09:52
Show Gist options
  • Save cakyus/a23f5829f6a5296f16d68fcdec0f865d to your computer and use it in GitHub Desktop.
Save cakyus/a23f5829f6a5296f16d68fcdec0f865d to your computer and use it in GitHub Desktop.
Text Tools
<!DOCTYPE html>
<html>
<head>
<title>Text Tool</title>
<style>
article {
position: relative;
}
nav {
position: absolute;
right: 10px;
top: 0px;
}
</style>
<script>
</script>
</head>
<body>
<article>
<header><h2>Text Tool</h2></header>
<section>
<p>
<textarea id="content" cols="100" rows="30"></textarea>
</p>
</section>
<nav>
<p>
<input id="search" type="text" placeholder="Search .." />
</p>
<ol>
<li>
<h2>Beast of Bodmin</h2>
<p>A large feline inhabiting Bodmin Moor.</p>
</li>
<li>
<h2>Morgawr</h2>
<p>A sea serpent.</p>
</li>
<li>
<h2>Owlman</h2>
<p>A giant owl-like creature.</p>
</li>
</ol>
</nav>
<footer>
<p>
<a href="https://gist.github.com/cakyus/a23f5829f6a5296f16d68fcdec0f865d">Github</a>
| <a href="https://gistcdn.githack.com/cakyus/a23f5829f6a5296f16d68fcdec0f865d/raw/text.html">GitHack</a>
</p>
</footer>
</article>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment