-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
66 lines (63 loc) · 1.85 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
<!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="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="assets/css/style.css" type="text/css" rel="stylesheet" />
<title>Glassmorphism</title>
</head>
<body>
<section>
<div class="card">
<div class="item">
<h1>01</h1>
<h2>HTML5, CSS3</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard. Lorem Ipsum
is simply dummy text of the printing.
</p>
</div>
</div>
<div class="card">
<div class="item">
<h1>02</h1>
<h2>JavaScript</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard. Lorem Ipsum
is simply dummy text of the printing.
</p>
</div>
</div>
<div class="card">
<div class="item">
<h1>03</h1>
<h2>ReactJS</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard. Lorem Ipsum
is simply dummy text of the printing.
</p>
</div>
</div>
</section>
<script
type="text/javascript"
src="assets/scripts/vanilla-tilt.js"
></script>
<script>
VanillaTilt.init(document.querySelectorAll(".card"), {
max: 25,
speed: 400,
glare: true,
"max-glare": 1,
});
</script>
</body>
</html>