Last active
October 15, 2019 09:52
-
-
Save cakyus/a23f5829f6a5296f16d68fcdec0f865d to your computer and use it in GitHub Desktop.
Text Tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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