-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·105 lines (97 loc) · 2.98 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style/index.css" />
<title>Home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- <style>
body {
background-image: url('assets/frog.jpeg');
background-size: cover;
background-repeat: no-repeat;
}
</style> -->
</head>
<body>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="/html/about.html">About Us</a></li>
<li><a href="#">Services</a></li>
<div class="dropdown"></div>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="container">
<div class="card">
<h1>Hello</h1>
<p>Not sure how I feel about it :)</p>
<div class="button-container">
<a href="login.php">
<button>Login</button>
</a>
<a href="signup.php">
<button class="green">Get Started</button>
</a>
</div>
</div>
<div>
</div>
</div>
<div class="containers">
<h1 class="title">SecureShift</h1>
<div class="feature">
<p>SecureShift.com is your trusted destination for secure file encryption and decryption using the Shift Key
technique.
With our intuitive online tool, you can encrypt sensitive documents, messages, and files with ease, ensuring
the privacy
and security of your data.
</p>
</div>
<hr>
<h2 class="title">Key Features</h2>
<div class="feature">
<p>
<big><u>Advanced Encryption:</u></big>Our platform employs the Shift Key technique to provide robust encryption
for your files.
With this
technique, you can encrypt your data by shifting the characters by a specified number of positions, enhancing
security.
</p>
<hr>
</div>
<div class="feature">
<p>
<big><u>Effortless Decryption:</u></big> Decrypt encrypted files effortlessly using our user-friendly
interface. Simply
input
the
encrypted text and the decryption key, and our platform will handle the rest, providing you with quick access
to
your
decrypted data.
</p>
</div>
<div class="feature">
<p>
<big><u>Customizable Encryption Keys:</u></big>Customize your encryption keys to suit your security
requirements. Choose the
number of
positions to shift the characters, allowing for flexibility and tailored encryption levels.
</p>
</div>
<div class="feature">
<p>
<big><u>Intuitive Interface:</u></big>Our intuitive interface makes encryption and decryption accessible to
users of all
levels.
Whether you're a beginner or an experienced user, our platform offers a seamless experience for encrypting and
decrypting your files.
</p>
</div>
</div>
</div>
</body>
</html>