-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="style.css" type="text/css" rel="stylesheet" />
<title>Glassmorphism</title>
</head>
<body>
<section>
<div class="card">
<div class="item">
<span class="logo">LOGO</span>
<nav>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#">Ideas</a>
<a href="#">How it Works ?</a>
<a href="#">More ⯆</a>
</nav>
<li>
<h1>Stay Home</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
</p>
<p class="copy">Copyright © All Rights Reserved To <span>NourElDin Farag</span> ®</p>
<input type="button" value="Join US" class="btn">
</li>
<img src="Jukebox_-_Stay_Home-removebg-preview.png" class="img1">
</div>
</div>
</section>
<script type="text/javascript" src="script.js"></script>
<script>
script.init(document.querySelectorAll(".card"), {
max: 25,
speed: 400,
glare: true,
"max-glare": 1,
});
</script>
</body>
</html>