-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhitespace.html
21 lines (19 loc) · 970 Bytes
/
whitespace.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Whitespace Generator</title>
<link rel="stylesheet" type="text/css" href="whitespace.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="whitespace.js"></script>
</head>
<body>
<h1>Whitespace Generator</h1>
<p>Whitespace is a stack-based esoteric programming language that consists of only spaces, tabs, and newlines.</p>
<p>This tool generates Whitespace code that outputs an ASCII string of your choice.</p>
<div class="textareas">
<textarea name="input_textarea" id="input_textarea" cols="30" rows="10" placeholder="ASCII input"></textarea>
<textarea name="output_textarea" id="output_textarea" cols="30" rows="10" placeholder="Generated whitespace"></textarea>
</div>
<button type="button" id="generate_button">Generate</button>
</body>
</html>