-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JOKER</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="landingpg.css">
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="#">JO<span>KER</span></a>
</div>
<ul class="menus">
<div class="closeBtn">
<span class="fa fa-times"></span>
</div>
<li class="active"><a href="#">HOME</a></li>
<li><a href="#">GALLERY</a></li>
<li><a href="#">CAST</a></li>
<li><a href="#">ABOUT</a></li>
</ul>
<button class="hamburger" type="button" id="nav-expander">
<span class="hamp-top"></span>
<span class="hamp-middle"></span>
<span class="hamp-bottom"></span>
</button>
</nav>
<section class="hero">
<div class="bg2">
<img src="./images/jokerbg2.png">
</div>
<div class="content">
<h3 class="text1">Joaquin Phoenix</h3>
<h2 class="text2" id="text2">The Man who laughs</h2>
<p>
In Gotham City,mentally troubled comedian <span>Arthur Fleck</span> is disregarded and mistreated by society.He then embarks on a downward spiral of revolution and bloody crime.
</p>
<div class="buttons">
<button class="watchnow">
<span><i class="fa fa-play-circle"></i></span>
<span>Watch Now</span>
</button>
<button class="trailer">
<span>Watch Trailer</span>
</button>
</div>
</div>
<video controls class="video" poster="./images/poster.jpg">
<source src="./images/videoplayback.mp4" type="video/mp4">
</video>
<div class="social-icons">
<span><i class="fa fa-facebook" aria-hidden="true"></i></span>
<span><a href="https://github.com/BeingCreative09" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a></span>
<span><i class="fa fa-instagram" aria-hidden="true"></i></span>
</div>
</section>
</header>
</body>
<script>
window.addEventListener('load',function(){
var menus=document.querySelector('.menus');
var hamburger=document.querySelector('.hamburger');
var closeBtn=document.querySelector('.closeBtn');
hamburger.addEventListener('click',()=>{
menus.classList.add('active');
})
closeBtn.addEventListener('click',()=>{
menus.classList.remove('active');
})
})
</script>
</html>