-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 941 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Movie App</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="script.js" defer></script>
</head>
<body class="bg-slate-800">
<header class="bg-slate-900 shadow-lg shadow-slate-900 flex items-center justify-between">
<img src="logo.png" alt="error" class="w-16 h-16 cursor-pointer" />
<form id="form">
<input
type="text"
id="search"
placeholder="Search"
class="search border-slate-100 text-slate-400"
/>
</form>
</header>
<main id="main" class="flex justify-center mt-12"></main>
</body>
</html>