-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.html
82 lines (79 loc) · 2.45 KB
/
header.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NollyScore</title>
</head>
<body>
<div id="container">
<div id="logo-menu-container">
<div id="logo">
<img src="header-images/nollyscore-logo.svg" alt="webiste logo" />
</div>
<!-- harmburger -->
<div id="harmburger">
<img src="header-images/harmburger.svg" alt="harmburger" />
</div>
<div id="harmburger-menu">
<div id="close-harmburger"><p>X</p></div>
<div id="harmburger-menu-items">
<p>New Release</p>
<p>Top Rated</p>
<p>Trending</p>
<p>About Us</p>
<p>Report Issues</p>
<p>FAQ</p>
</div>
</div>
<div id="menu-options">
<a href="./tvSeries.html">TV Shows</a>
<a href="./movies.html">Movies</p>
<a href="#">Artists</a>
<div id="more">
<p >
More
<span
><img
id="arrow-down"
src="header-images/arrow-down.svg"
alt="arrow down"
/></span>
<div id="more-container">
<!-- <div id="close-more"><p>X</p></div> -->
<div id="more-menu-items">
<div id="col-1">
<p>New Release</p>
<p>Top Rated</p>
<p>Trending</p>
</div>
<div id="col-2">
<p>About Us</p>
<p>Report Issues</p>
<p>FAQ</p>
</div>
</div>
</div>
</p>
</div>
</div>
</div>
<div id="watchlist-login">
<div id="watchlist-container">
<div id="watch-search">
<div id="watch-icon">
<img src="header-images/add-watchlist.svg" alt="" />
</div>
<a href="#block-3">Watch List</p>
</div>
<div id="search">
<img src="header-images/search-icon.svg" alt="search icon" />
<input type="text" class="search-input" placeholder="Search...">
</div>
</div>
<div id="login">
<a href="./login.html">Log in</a>
</div>
</div>
</div>
</body>
</html>