-
Notifications
You must be signed in to change notification settings - Fork 0
/
randomCatFacts.html
35 lines (24 loc) · 986 Bytes
/
randomCatFacts.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<div id="gameArea">
<h1> Random Cat Facts</h1>
<div id="result"> _________________________</div>
<img src="https://i1.sndcdn.com/artworks-000246800503-9gzyj7-t500x500.jpg" alt="cat">
<button onclick="catFacts()" id="generate"> Generate </button>
<div> <a href="index.html"> <button id="select"> Back to Select Screen</button></a> </div>
<a href="https://cvillecatcare.com/veterinary-topics/101-amazing-cat-facts-fun-trivia-about-your-feline-friend/">
<button id="source"> Source of the Cat Facts </button></a>
<a href="https://soundcloud.com/user-831146563/cat-meowing-sound-effect"> <button id="source"> Source of the Cat
Image</button></a>
</div>
</div>
</body>
</html>