-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Movies App</title>
<!-- Link to Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<!-- Link to Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<!-- Link to your favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon.ico">
<!-- Link to your custom CSS file -->
<link rel="stylesheet" href="/assets/css/index.css" />
</head>
<body class="bg-slate-950"> <!-- Changed bg-white to bg-slate-950 -->
<a href="index.html" class="block mt-4 ml-4"> <!-- Added ml-4 for left margin -->
<div id="main-text-bar"></div>
<h2 class="mb-2 mt-0 text-4xl font-medium leading-tight text-primary">
HomeLand Movies: A Collection of Movies
</h2>
</a>
</header>
<main>
<!-- Global search button -->
<form class="max-w-md mx-auto mb-8">
<label for="default-search" class="mb-2 text-sm font-medium text-gray-900 sr-only dark:text-white">Search</label>
<div class="relative">
<div class="absolute inset-y-1 -left-3 flex items-center ps-3 pointer-events-none">
<svg class="w-4 h-4 text-gray-500 dark:text-gray-400" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 20 20">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z" />
</svg>
</div>
<input type="search"
class="movie-search-input block w-full p-4 ps-10 text-sm text-gray-900 border border-gray-300 rounded-lg bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="Search Movie.." required />
<button type="submit"
class="movie-search-btn motext-white absolute bottom-3.5 right-2.5 bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-4 py-2 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">Search</button>
</div>
</form>
<!-- Movie container -->
<div id="movie-container" class="flex justify-evenly flex-wrap">
</div>
<!-- Footer -->
<footer class="text-center text-white text-base py-4">
<p>© 2024 HomeWatch Enterprises</p>
</footer>
<!-- Script placeholder -->
<script src="/assets/js/api.js"></script>
</body>
</html>