-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 954 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FCC: Caeser Cipher</title>
<link href="./main.css" rel="stylesheet">
<script src="./main.js"></script>
</head>
<body>
<div id="content">
<h2>Ceaser Cipher for both uppercase and lower case characters</h2>
<label for="text">Enter text:</label>
<input type="text" id="text" name="text">
<br><br>
<button id="check" onclick="getCeaserCipher()">Check</button>
<button id="clear" onclick="clearText()">Clear</button>
<br><br>
<div id="result"></div>
</div>
<div id="source-code">Source code:
<a href="https://github.com/balalearnstocode/caesar-cipher"
target="_blank">https://github.com/balalearnstocode/caesar-cipher</a>
</div>
</body>
</html>