-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhacker.html
32 lines (32 loc) · 925 Bytes
/
hacker.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
31
32
<!DOCTYPE html>
<html>
<head>
<title>Hacker</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1 style="text-align: left; margin-left: 1%; clear: right;">Hacker</h1>
<form action="index.html">
<button>Home</button>
</form>
</header>
<main id="encryptorMain">
<h2>Encrypted Message:</h2>
<form>
<textarea name="" id="message" rows="3"></textarea>
</form>
<br>
<h2>
Enter Word:
<input id="word" type="string" />
</h2>
<br>
<h2>Possible Messages: </h2>
<form>
<textarea name="" id="decryptedMessage" rows="3" readonly></textarea>
</form>
</main>
<script src="script.js"></script>
</body>
</html>