snow10/index.html

23 lines
581 B
HTML
Raw Normal View History

2021-02-11 22:58:54 +00:00
<!doctype html>
2016-05-28 04:34:52 +00:00
<html>
<head>
2021-02-11 22:58:54 +00:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="theme.css">
2016-05-28 04:34:52 +00:00
</head>
<body>
2021-02-11 22:58:54 +00:00
<div class="container main">
<h1>Snow10 ☃</h1>
2016-05-28 04:34:52 +00:00
2021-02-11 22:58:54 +00:00
<form class="encode">
<label for="hideText">Non-secret message: <input type="text" name="hideText"></label>
<br>
2021-02-11 22:58:54 +00:00
<h1>Secret message</h1>
<textarea name="input" required></textarea>
<h1>Output</h1>
<textarea name="output" readonly></textarea>
<input type="button" value="Hide - Unhide">
</form>
2016-05-28 04:34:52 +00:00
</div>
</body>
2021-02-11 22:58:54 +00:00
</html>