-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 886 Bytes
/
index.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
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="index.css" />
<link
href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="mainframe">
<!-- <p class="input-label">Original</p>
<textarea id="original" type="text"></textarea> -->
<p class="input-label">Material</p>
<button id="shuffle">Shuffle</button>
<textarea id="material" type="text"></textarea>
<p class="input-label">Anagram</p>
<textarea id="anagram" type="text"></textarea>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"
></script>
<script src="index.js"></script>
</body>
</html>