-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (44 loc) · 1.57 KB
/
index.html
File metadata and controls
53 lines (44 loc) · 1.57 KB
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
49
50
51
52
53
<!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">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Poller+One&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./media/pngfind.com-star-destroyer-png-268438.png" type="image/x-icon">
<title>SWAPI project</title>
</head>
<body>
<header>
<a href="#landing-page"><img class="logo" src="./media/pngfind.com-star-destroyer-png-268438.png" alt="Startwars"></a>
</header>
<main id="landing-page">
<a href="#movie-page"><button>Star wars-movies</button></a>
</main>
<main id="movie-page">
<section class="movie-header">
<h1>Star Wars-movies</h1>
<div id="loader">
<span class="loader"></span>
<p>Please wait</p>
</div>
<div class="movie-container">
<div id="movies"></div>
</div>
</section>
<section id="movie-modal">
<div id="movie-modal-loader">
<span class="loader"></span>
<p>Please wait</p>
</div>
<div id="movie-modal-container">
<div id="times"><span>×</span></div>
<div id="movie-modal-content">
</div>
</div>
</section>
</main>
<script src="./scripts/app.js"></script>
</body>
</html>