-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
40 lines (36 loc) · 1.3 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search - Retro Flix</title>
<link rel="stylesheet" href="/css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="theme-toggle">
<button id="themeToggle" class="theme-toggle-btn">
<span class="sun">☀️</span>
<span class="moon">🌙</span>
</button>
</div>
<div class="container">
<h1 class="retro-title">RETRO FLIX</h1>
<div class="search-container">
<div class="search-box">
<input type="text" id="searchInput" placeholder="SEARCH MOVIES & TV SHOWS..." class="search-input">
<button id="searchButton" class="search-button">
<span class="button-text">SEARCH</span>
</button>
</div>
<div class="search-results"></div>
</div>
<nav class="bottom-nav">
<a href="index.html">HOME</a>
<a href="/search.html" class="active">SEARCH</a>
<a href="/about.html">ABOUT</a>
</nav>
</div>
<script src="/js/search.js"></script>
</body>
</html>