-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (63 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dark & Light mode toggler</title>
<link rel="icon" href="img/day-and-night.png" type="image/x-icon">
<!--CSS & FontAwesome CDN-->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="header">
<div class="bg container">
<div class="credit">
<div class="thecredit">
<a href="https://github.com/irfanshadikofficial/" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://facebook.com/irfanshadikofficial" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://www.youtube.com/channel/UCyv-8tjvvMctkIlljjw9Gfg" target="_blank"><i class="fa-brands fa-youtube"></i></a>
<a href="https://www.linkedin.com/in/irfanshadikofficial/" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://twitter.com/irfanshadikoffi" target="_blank"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="heading"><img src="img/day-and-night.png" alt="" class="icon"></div>
<div class="darktoggler">
<button class="dark" onclick="dark()"><img src="img/sun.png" alt="" id="sun"></button>
</div>
</div>
<!--End Header-->
</div>
<div class="container p1">
<div class="img">
<img src="img/poster.jpg" alt="" class="poster"></div>
<div class="info">
<h1 class="title">Pirates of the Caribbean: The Curse of the Black Pearl</h1>
<p class="description">Blacksmith Will Turner teams up with eccentric pirate "Captain" Jack Sparrow to save his love, the governor's daughter, from Jack's former pirate allies, who are now undead.</p>
<p class="genre"><span class="bold">Genre: </span>Action, Adventure, Fantasy</p>
<p class="released"><span class="bold">Release date: </span>2003</p>
<p class="duration"><span class="bold">Duration: </span>143 min</p>
<p class="rating"><span class="bold">IMDb rating: </span>8.1</p>
<p class="director"><span class="bold">Director: </span>Gore Verbinski</p>
<p class="writers"><span class="bold">Writers:
</span>Ted Elliott(screen story), Terry Rossio(screen story), Stuart Beattie(screen story)
</p>
<p class="stars"><span class="bold">Stars: </span>Johnny Depp, Geoffrey Rush, Orlando Bloom</p>
<!--buttons-->
<h3 class="watchhere">Watch here:</h3>
<div class="watch">
<a href="https://web.fmovies.to/movie/pirates-of-the-caribbean-the-curse-of-the-black-pearl-6l30/1-full" target="_blank"><button class="watchlink fmov">Fmovies</button></a>
<a href="https://novastream.to/play/tt0325980" target="_blank"><button class="watchlink nova">Novastream</button></a></div></div>
</div>
<div class="down container">
<h1>Screenshots:</h1>
<img src="img/p2.jpg" alt="" class="ss">
<img src="img/p4.jpg" alt="" class="ss">
<img src="img/p5.jpg" alt="" class="ss">
</div>
</div>
<!--JS Linking-->
<script src="script.js"></script>
</body>
</html>