-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
38 lines (35 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Back to the Birth</title>
<link rel="stylesheet" href="./style/stylesheet.css" />
<link rel="icon" href="./img/logo.png" />
<link href="https://fonts.googleapis.com/css?family=Bebas+Neue|Lato&display=swap" rel="stylesheet" />
</head>
<body>
<main>
<section class="landing">
<img src="https://fontmeme.com/permalink/191113/346d1719c257c332aeddc504bc867a63.png"
alt="back-to-the-birthday-logo" class="titlelogo" />
<form>
<input aria-label="Enter your Year of Birth" type="number" class="input-date" placeholder="YEAR" name="bday"
min="1900" max="2019" />
<button type="submit" class="submit-date" value="Submit">
Submit</button>
</a>
</form>
</section>
<section class="films" id="films"></section>
<section class="music" id="music"></section>
<footer>
APIs: The Movie DB and Musixmatch.
</footer>
</main>
</body>
<script type="text/javascript" src="./scripts/config.js"></script>
<script type="text/javascript" src="./scripts/music-api.js"></script>
<script type="text/javascript" src="./scripts/film-api.js"></script>
</html>