-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (93 loc) · 3.58 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./images/cinematrix-favicon.png" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./style/style.css" />
<link rel="stylesheet" href="./style/spinner.css" />
<link rel="stylesheet" href="./lib/swiper.css" />
<title>Cinematrix - The Cinematic Realm</title>
</head>
<body>
<!-- header -->
<header class="header">
<div class="inner-container">
<a href="/index.html" class="header-logo">
<img src="./images/cinematrix-logo.png" alt="cinematrix logo" />
</a>
<nav class="navbar">
<input type="checkbox" id="hamburger1" />
<label for="hamburger1"></label>
<ul>
<li><a href="/index.html" class="nav-link">Home</a></li>
<li><a href="/movies.html" class="nav-link">Movies</a></li>
<li><a href="/tv-shows.html" class="nav-link">TV Series</a></li>
</ul>
</nav>
</div>
</header>
<!-- now playing -->
<section class="now-playing">
<div class="trending-movies"></div>
<h2>Now Playing</h2>
<div class="swiper inner-container">
<div class="swiper-wrapper"></div>
</div>
</section>
<!-- search form -->
<section class="search">
<div class="inner-container">
<div id="alert"></div>
<form action="/search.html" class="search-form">
<div class="search-radio-box">
<input type="radio" name="type" id="movie" value="movie" checked />
<label for="movie">Movies</label>
<input type="radio" name="type" id="tv" value="tv" />
<label for="tv">TV Series</label>
</div>
<div class="search-input">
<input type="text" name="search-term" class="search-term" placeholder="What are you looking for?" />
<button type="submit" class="search-button">
<i class="fa fa-search"></i>
</button>
</div>
</form>
</div>
</section>
<!-- popular movies -->
<section class="inner-container">
<h2>Popular Movies</h2>
<div id="popular-movies"></div>
</section>
<!-- footer -->
<footer class="footer">
<div class="inner-container">
<a href="/index.html" class="footer-logo">
<img src="./images/cinematrix-logo.png" alt="cinematrix logo" />
</a>
<div class="social-links">
<a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
</footer>
<div class="spinner"></div>
<script src="./script/app.js"></script>
<script src="./lib/swiper.js"></script>
</body>
</html>