-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmovie.html
48 lines (36 loc) · 1.61 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon_io/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon_io/site.webmanifest">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="style.css">
<title>MOVIE INFO</title>
</head>
<body class="body">
<header class="header">
<div class="container">
<h1 class="title header-title">Movies info</h1>
<a class="back-home-link" href="./index.html"><svg class="arrow-svg" xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="#708ED2">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
</svg>
</a>
</div>
</header>
<div class="container">
<div class="movies-main">
<p class="error-msg"></p>
<div class="movies">
</div>
<div class="pagination">
</div>
</div>
<footer></footer>
</div>
<!-- <script src="main.js"> </script> -->
</body>
</html>