-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
75 lines (72 loc) · 2.41 KB
/
Copy pathabout.html
File metadata and controls
75 lines (72 loc) · 2.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/general.css" />
<link rel="stylesheet" href="styles/about.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>K Cipher</title>
</head>
<body>
<div class="container">
<header>
<a href="./">
<img src="images/logo.png" alt="logo" class="logo-icon" />
</a>
<nav>
<ul>
<li><a href="./">Home</a></li>
<li><a href="./app.html">App</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<div class="text-box">
<h3>About</h3>
<p>
This is a web-based (JavaScript) implementation of
<a
href="https://github.com/realmkdev/k-cipher"
target="_blank"
rel="noopener noreferrer"
>k-cipher</a
>, a key-based text encryption and decryption program originally
written in Python. It enables users to encrypt plain text into an
unreadable format and decrypt it back to its original form using a
chosen key.
</p>
<p>
The app focuses on simplicity and accessibility. Users only need to
provide their text and a key to perform encryption or decryption,
making it easy to protect messages, notes, or shared information. By
bringing the original Python program to the web, it removes the need
for local installation and allows the tool to be used directly from
any modern browser.
</p>
<p>
If you like this project, give it a star on
<a
href="https://github.com/realmkdev/k-cipher-web"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
to show your support!
</p>
</div>
</main>
<footer>
<p>Created by <b>Kamran</b></p>
<a
href="https://www.instagram.com/realmkdev/"
target="_blank"
rel="noopener noreferrer"
>
<img src="images/instagram.svg" alt="instagram" class="logo-icon" />
</a>
</footer>
</div>
</body>
</html>