-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Studio Ghibli</title>
<!-- // ----- Normalize CSS for Cross Browser Consistency ---- // -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" />
<!-- // ----- Google Fonts ---- // -->
<link href="https://fonts.googleapis.com/css2?family=Flavors&family=IBM+Plex+Sans:wght@300;500&display=swap"
rel="stylesheet">
<!-- // ----- My Styles ---- // -->
<link href="styles.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Studio Ghibli Films</h1>
<img src="images/studio-ghibli.png" alt="studio ghibli logo">
</header>
<nav id="mainnav">
<ul>
<li><a href="#films">Films</a></li>
<li><a href="#people">People</a></li>
<li><a href="#locations">Locations</a></li>
<li><a href="#species">Species</a></li>
<li><a href="#vehicles">Vehicles</a></li>
</ul>
</nav>
<nav>
<form>
<select id="sortorder" disabled>
<option value="title">Title</option>
<option value="release_date">Release Date</option>
<option value="rt_score">Rotten Tomatos Score</option>
</select>
</form>
</nav>
<main>
</main>
<script src="script.js"></script>
</body>
</html>