-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 879 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Video Scroll Animation</title>
</head>
<body>
<!-- Intro section starts -->
<section class="intro">
<video src="./assets/videos/Apple-Dev Ed Pro.mp4"></video>
</section>
<!-- Intro section ends -->
<!-- Fitness section starts -->
<section class="location">
<video src="./assets/videos/Earth_Zoom_In.mov"></video>
</section>
<!-- Fitness section ends -->
<script src="./js/ScrollMagic.min.js"></script>
<script src="./js/animation.gsap.min.js"></script>
<script src="./js/debug.addIndicators.min.js"></script>
<script src="./js/TweenMax.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>