-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (57 loc) · 2.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- FAV ICON -->
<link rel="shortcut icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="shortcut icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="shortcut icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<!-- 00000000000000000000000000000000000000000 -->
<title>WebCipher Home Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="blurred-wrapper">
<header class="main-header container">
<a href="index.html" class="logo">Web<span class="logoSpan">Cipher</span></a>
<a href="#" class="btn sign-up" onclick="togglePopup()">About</a>
<!-- Modal code -->
<div class="popup" id="popup-1">
<div class="overlay"></div>
<div class="content">
<div class="close-btn" onclick="togglePopup()">×</div>
<h1 class="aboutHeader">About</h1>
<p class="aboutPara">WebCipher is a website to implement Cryptography Encryption Techniques.
The UI of this website is inspired from latest trend of GlassMorphism in UI Designing.
Theme of this website is "Hide & Seek".<br>
This website is Designed and Created by <br>MANAV KAPILA<br>
and is licensed under MIT.
</p>
</div>
</div>
<!-- ******************************** -->
</header>
<section class="hero container">
<div class="content-wrapper">
<h5 class="tagline">More than just Encryption</h5>
<h1 class="title">Make encryption easier by using Web<span>Cipher</span></h1>
<p class="message">Encrypt your message on any device using this website so that you can secure your messages</p>
<a href="html/dashboard.html" class="btn cta">ENTER</a>
</div>
<div class="image-wrapper">
<div class="hero-image">
</div>
</div>
</section>
</div>
<!-- JS CODE FOR MODAL -->
<script>
function togglePopup(){
document.getElementById("popup-1").classList.toggle("active");
}
</script>
<!-- JS CODE ENDS HERE -->
</body>
</html>