-
Notifications
You must be signed in to change notification settings - Fork 0
/
textforget.html
28 lines (24 loc) · 886 Bytes
/
textforget.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="forget_style.css"/>
<title>professional text forgetter</title>
</head>
<body class="front">
<header>
<h1>To Help With Forgetting Necessary Bits Of Text</h1>
<a href="forgetterexplained.html">What is this?</a>
<a href="http://isabelbrison.com/about">Who made it?</a>
</header>
<form name='getit' id="enterstuff">
<textarea id="txt-input" type="text" name="intext"></textarea>
<button id ="butinput" type="button" onClick="forgetit()">forgetment</button>
</form>
<div id='text-display'>
</div>
<button type="button" id="printbut" onClick="window.print()">print this text</button>
<script type="text/javascript" src="textforget.js"></script>
</body>
</html>