-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.13 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.13 KB
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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
<title>Caesar Cipher</title>
</head>
<body>
<h1 class="title">Caesar Cipher</h1>
<br>
<ol class="options">
<li>
<button onclick="window.location.href='./cipher'">
<span>Cipher Raw Text</span>
</button>
</li>
<li>
<button onclick="window.location.href='./decipher'">
<span>Decipher Ciphered Text</span>
</button>
</li>
<li>
<button onclick="window.location.href='./crack'">
<span>Crack Ciphered Text</span>
</button>
</li>
<li>
<button onclick="window.location.href='./code-dot-org-App-Lab'">
<span>Caesar Cipher code.org App Lab</span>
</button>
</li>
</ol>
<br>
<div style="text-align:center;display:flex;justify-content:center;align-items:center;width:100vw;">
<img class="exampleImage" src="example.png" alt="caesar cipher example image">
</div>
</body>
</html>