-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.html
31 lines (29 loc) · 901 Bytes
/
movie.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
<!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="movie.css">
<title>
MOVIE APP
</title>
</head>
<body>
<header>
<img src="movie icon.png" alt="logo">
<span class="logo-info"><i>Movie's arena</i></span>
<ul>
<li><a> HOME </a></li>
<li><a> MOVIES </a></li>
<li><a> ACTORS</a></li>
<li><a> SUPPORT</a></li>
<li><a> ABOUT</a></li>
</ul>
<form id="form">
<input type = "text" id="search"
class="search"
placeholder="search">
</form>
</header>
<main id="main"></main>
</body>