-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Parallax Scrolling Webpage</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="wolf.png" />
</head>
<body>
<section>
<img style="filter: brightness(1.25)" src="bg.jpg" alt="" id="bg" />
<img style="opacity: 0.7" src="castle.png" alt="" id="castle" />
<img src="bats.png" alt="" id="bats" />
<img src="witch.png" alt="" id="witch" />
<img src="wolf.png" alt="" id="wolf" />
</section>
<div>
<h1>Halloween Special Parallax Scrolling Effect</h1>
<h1>©2021 PROTIK | All Rights Reserved</h1>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/ScrollTrigger.min.js"></script>
<script src="script.js"></script>
</body>
</html>