-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebSeries.html
48 lines (36 loc) · 1.39 KB
/
webSeries.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
<!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/style.css">
<title>Web Series</title>
</head>
<body class="webSeries">
<nav class="menu">
<ul>
<li><a class="menubutton" href="index.html">HOME</a></li>
<li><a class="menubutton" href="movies.html">Movies</a></li>
</ul>
<form id="form">
<input type="text" placeholder="Search" id="search" class="search">
</form>
</nav>
<div id="tags"></div>
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content" id="overlay-content"></div>
<a href="javascript:void(0)" class="arrow left-arrow" id="left-arrow">⇐</a>
<a href="javascript:void(0)" class="arrow right-arrow" id="right-arrow" >⇒</a>
</div>
<main id="main"></main>
<div class="pagination">
<div class="page" id="prev">Previous Page</div>
<div class="current" id="current">1</div>
<div class="page" id="next">Next Page</div>
</div>
<script src="script/webSeriesScript.js"></script>
</body>
</html>