-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.52 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.52 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
42
43
<!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>CaesarCipher</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jost&family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header id="header">
<h1>Enter any phrase</h1>
<p><em>and it will be encrypted with the Caesar cipher</em></p>
</header>
<section id="translate">
<form>
<fieldset>
<legend>Encryption machine</legend>
<input type="text" placeholder="Type something here...">
<button class="btn">Encrypt</button>
</fieldset>
</form>
<div class="effect">
<p class="text"></p>
<button class="closeBtn"><i class="fas fa-times"></i></button>
</div>
</section>
<footer id="footer">
<p>© Copyright 2021 by Paweł Zajączkowski</p>
</footer>
</div>
<script type="module" src="index.js"></script>
</body>
</html>