|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 7 | + <title>3d Parallax</title> |
| 8 | + <link rel="stylesheet" href="./style.css" /> |
| 9 | + <link |
| 10 | + href="https://fonts.googleapis.com/css?family=Oswald:700|Poppins" |
| 11 | + rel="stylesheet" |
| 12 | + /> |
| 13 | + </head> |
| 14 | + <body> |
| 15 | + <section> |
| 16 | + <nav> |
| 17 | + <h2>LOGO</h2> |
| 18 | + <a href="#" class="button">Sign Up</a> |
| 19 | + </nav> |
| 20 | + <div class="container"> |
| 21 | + <h2 class="main-title">Explore</h2> |
| 22 | + <img src="./bg1.png" alt="#" class="bg" /> |
| 23 | + <img src="./lady.png" alt="#" class="girl" /> |
| 24 | + <img src="./rock.png" alt="#" class="rock" /> |
| 25 | + </div> |
| 26 | + <div class="content"> |
| 27 | + <div class="content-images"> |
| 28 | + <div> |
| 29 | + <img src="./img1.jpg" alt="#" /> |
| 30 | + <h4>Someplace</h4> |
| 31 | + <h3>Something about that place</h3> |
| 32 | + </div> |
| 33 | + <div> |
| 34 | + <img src="./img2.jpg" alt="#" /> |
| 35 | + <h4>Someplace</h4> |
| 36 | + <h3>Something about that place</h3> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + <p class="text"> |
| 40 | + Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, quia! |
| 41 | + Quidem inventore libero beatae voluptatum accusamus iusto aut rem |
| 42 | + ratione necessitatibus amet, tenetur ea ullam dolore asperiores, |
| 43 | + excepturi atque eaque. |
| 44 | + </p> |
| 45 | + <p class="text"> |
| 46 | + Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, quia! |
| 47 | + Quidem inventore libero beatae voluptatum accusamus iusto aut rem |
| 48 | + ratione necessitatibus amet, tenetur ea ullam dolore asperiores, |
| 49 | + excepturi atque eaque. |
| 50 | + </p> |
| 51 | + </div> |
| 52 | + </section> |
| 53 | + </body> |
| 54 | + <script |
| 55 | + src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js" |
| 56 | + integrity="sha512-cdV6j5t5o24hkSciVrb8Ki6FveC2SgwGfLE31+ZQRHAeSRxYhAQskLkq3dLm8ZcWe1N3vBOEYmmbhzf7NTtFFQ==" |
| 57 | + crossorigin="anonymous" |
| 58 | + ></script> |
| 59 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/ScrollMagic.min.js"></script> |
| 60 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/animation.gsap.js"></script> |
| 61 | + <script src="./script.js"></script> |
| 62 | +</html> |
0 commit comments