-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (24 loc) · 899 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fun with APIs</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<main class="main-container">
<h1>Fun with APIs!</h1>
<p>Cheer me up with ...</p>
<section class="apis-container">
<a class="api-box" id="dog-api" href="/dog.html">Dogs</a>
<a class="api-box" id="space-api" href="/space.html">Space</a>
<a class="api-box" id="cat-api" href="/cat.html">Cats</a>
<a class="api-box" id="joke-api" href="/joke.html">Jokes</a>
</section>
</main>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>