-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.13 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
<!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="style.css">
</head>
<body>
<div class="modal-container hide">
<div class="modal">
<span class="close">×</span>
<div class="modal-info">
<h1 class="movie-title">Movie Title</h1> <p class="movie-detail">
this is starting spiderman
</p>
<button class="watch"> <a href="">Watch Now</a></button>
</div>
</div>
</div>
<header class="container">
<ul>
<li ><a href="" class="logo">Som <span class="log-primary">Movies</span></a></li>
<li><a href="">Watch Now</a></li>
</ul>
</header>
<div class="container">
<h1 class="title">Most Popular Movies</h1>
<div class="movie-container most-popular">
</div>
</div>
<script src="main.js"></script>
</body>
</html>