This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
cast-crew.html
64 lines (60 loc) · 2.29 KB
/
cast-crew.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
The Matrix Movies Website, a Hacktoberfest Project for Beginners
</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="apple-touch-icon" sizes="180x180" href="./img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicons/favicon-16x16.png">
<link rel="manifest" href="./img/favicons/site.webmanifest">
<link
href="https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Ubuntu&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/default.css">
<link rel="stylesheet" href="./css/pages/cast-crew.css">
</head>
<body>
<div class="screen">
<header id="header" onclick="window.location.href='index.html';">
<!-- js/header.js -->
</header>
<navbar id="navbar"><!-- js/navbar.js --></navbar>
<section class="cast-section">
<h3>Cast</h3>
<div class="fake" style="background-color: rgba(0, 0, 0, 0.26);margin: 10px auto;">
<div class="">Character Role</div>
<div class="">Actor's Name</div>
</div>
<div id="cast-rows">
<div id="rol-cast"></div>
<div id="name-act"></div>
</div>
</section>
<!--cast-section-->
<section class="crew-section">
<h3>Crew</h3>
<div class="fake" style="background-color: rgba(0, 0, 0, 0.26); margin: 10px auto;">
<div class="">Crew Role</div>
<div class="">Crew Member's Name</div>
</div>
<div id="crew-rows">
<div id="rol-crew"></div>
<div id="name-crew"></div>
</div>
</section>
<!--crew-section-->
<footer id="footer"><!-- js/footer.js --></footer>
</div>
<script src="js/header.js"></script>
<script src="js/navbar.js"></script>
<script src="js/footer.js"></script>
<script src="js/cast.js"></script>
<script src="js/crew.js"></script>
<script src="js/cast-crew.js"></script>
</body>
</html>