-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Parallax Scrolling Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="parallax-section">
<div class="layer-bg"></div>
<div class="layer-mid"></div>
<div class="layer-fore">
<h1>Welcome to The 3D Parallax World</h1>
<p>Scroll down to discover more</p>
<p>Simply My Love For Css</p>
<button class="cta-button">Explore Now</button>
</div>
</div>
<section>
<h2>Beautiful Animations and 3D Effects</h2>
</section>
<section>
<h2>Endless Creative Possibilities</h2>
</section>
<div class="parallax-section">
<div class="layer-bg"></div>
<div class="layer-mid"></div>
<div class="layer-fore">
<h1>Thanks for Visiting</h1>
<p>Feel free to contact us</p>
<button class="cta-button">Contact Us</button>
</div>
</div>
</body>
</html>