-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 866 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 name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" type="image/png" href="assets/images/icon.png">
<link rel="stylesheet" href="assets/css/index.css">
<title>Encryption and Decryption</title>
</head>
<body>
<div class="container">
<img src="assets/images/icon.png" alt="">
<h1>Encryption and Decryption</h1>
</div>
<button onclick="redirectTo('/encrypt.html')">Encrypt</button>
<button onclick="redirectTo('/decrypt.html')">Decrypt</button>
<footer>
<p>
PROJECT BY: MUBASHIR NASIR<br>
ROLL NUMBER: FA20-BSAI-2030-0088
</p>
</footer>
<script src="assets/js/index.js"></script>
</body>
</html>