-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (67 loc) · 3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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="style.css">
<title>Rebel Studio | Home</title>
</head>
<body>
<main class="wrapper">
<div class="preloader__overlay">
<p class="preloader__overlay--text">
<span>rebel</span>
<span>studio</span>
</p>
</div>
<section class="hero">
<nav class="navigation">
<a href="#" class="navigation__logo">
<span class="navigation__logo--text" id="js-slide-up">rebel studio</span>
</a>
<p class="navigation__location">
<span class="navigation__location--text" id="js-slide-up">based in london</span>
</p>
<ul class="navigation__list">
<li class="navigation__list--item"><a href="#" id="js-slide-up">work</a></li>
<li class="navigation__list--item"><a href="#" id="js-slide-up">our team</a></li>
<li class="navigation__list--item"><a href="#" id="js-slide-up">careers</a></li>
<li class="navigation__list--item"><a href="#" id="js-slide-up">let's talk</a></li>
</ul>
</nav>
<div class="hero__content">
<div class="left__container">
<h1 class="container__heading">
<span class="heading__line">
<span>unlock boundless creative</span>
</span>
<span class="heading__line">
<span>potential with rebel's studio</span>
</span>
<span class="heading__line">
<span>innovative solutions</span>
</span>
</h1>
<ul class="container__list">
<li class="container__list--item">product concept</li>
<li class="container__list--item">music video</li>
<li class="container__list--item">3d & cgi</li>
<li class="container__list--item">video production</li>
<li class="container__list--item">scene development</li>
<li class="container__list--item">promo</li>
<li class="container__list--item">movie</li>
<li class="container__list--item">architecture</li>
</ul>
</div>
<p class="right__container">
<span class="right__container--text" id="js-slide-up">scroll down</span>
</p>
</div>
<video playsinline loop muted autoplay class="hero__video--bg" src="./assets/video/CGI.mp4"></video>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/CustomEase.min.js"></script>
<script src="./script.js"></script>
</body>
</html>