-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.18 KB
/
index.html
File metadata and controls
42 lines (40 loc) · 1.18 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="westtle">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Cat</title>
<link rel="icon" type="image/x-icon" href="assets/media/images/icon-cat.png">
<link rel="stylesheet" type="text/css" href="assets/style/style.css">
</head>
<body>
<header>
<a class="header__icon" href="index.html">
<img src="assets/media/images/icon-cat.png">
<h2>Random Cat</h2>
</a>
<div id="js---btn-randomize" class="header__randomizer">
<span>Randomize!!</span>
</div>
</header>
<hr>
<main>
<div id="container__facts">
<div class="facts--cat-image">
<img id="js---random-image" src="#" alt="cat-picture">
</div>
<h4>Cat Facts</h4>
<div class="facts--cat">
<p id="js---facts--inner-text"></p>
</div>
</div>
</main>
<footer>
<hr id="bottom-hr">
<p>REST API:<br><a href="https://aws.random.cat/meow" target="_blank">https://aws.random.cat/meow</a>,
<a href="https://meowfacts.herokuapp.com/" target="_blank">https://meowfacts.herokuapp.com/</a></p>
</footer>
<script type="text/javascript" src="assets/script/script.js"></script>
</body>
</html>