-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.57 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!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>Ceasor Cipher V ሐበሻ </title>
<link rel="shortcut icon" href="./assets/images/logo.png">
<script
src="https://kit.fontawesome.com/f7c40fbebc.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<div class="shuffel">
<i class="fa-solid fa-caret-up" id="incShuffelValue" title="Increase Shuffel Value"></i>
<p id="shuffel"></p>
<i class="fa-solid fa-caret-down" id="decShuffelValue" title="Decrease Shuffel Value"></i>
</div>
<main>
<div class="textboxArea">
<!-- <p>Hello</p> -->
<textarea autofocus name="text" id="inptext" cols="30" rows="10"></textarea>
<div class="btns">
<div class="encode btn" id="encode">
<span>Encrypt</span>
</div>
<div class="decode btn" id="decode">
<span>Decrypt</span>
</div>
</div>
</div>
<div class="resultArea">
<p id="result">Bonjour</p>
<i class="fa-solid fa-copy fa-2x" id="copy" title="Copy To Clipboard"></i>
<h3 id="about"> <a href="https://ato-codes.github.io/my_cv_site/" target="_blank">© አቶ Codes - እኔ ሐበሻ / MHCDA ፳፻፲፭</a> </h3>
</div>
</main>
<script src="script/ceasorcipherAmh.js"></script>
<script src="index.js"></script>
</body>
</html>