forked from soumik03/Movie-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie App</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header>
<form id="form">
<input type="search" id="search" class="search" placeholder="Search">
</form>
</header>
<main id="main">
<div class="movie">
<img src="https://images.unsplash.com/photo-1585951237318-9ea5e175b891?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80" alt="" width="200px" height="200px">
<div class="movie-info">
<h3>Movie Title</h3>
<span class="green">9.8</span>
</div>
<div class="overview">
<h3>Overview</h3>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eos asperiores architecto beatae sequi voluptatum officiis debitis necessitatibus quia veniam reiciendis earum
</div>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>