-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 794 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="index.css">
<title>API Challenge One</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Roboto:wght@300&display=swap');
</style>
</head>
<body>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/c/ca/Studio_Ghibli_logo.svg/1200px-Studio_Ghibli_logo.svg.png">
<h4>Film information accessed via <a href="https://ghibliapi.herokuapp.com/#section/Studio-Ghibli-API">the Studio Ghibli API</a>.</h4>
<div class="data">
<div class="movies">
</div>
</div>
<script src="index.js"></script>
</body>
</html>