-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.54 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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;700;900&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ="
crossorigin="anonymous"
/>
<title>What Animal? | Home</title>
</head>
<body>
<div class="container">
<div class="header">
<h1>What Animal?</h1>
<h3>An Animal Guessing Game</h3>
</div>
<div class="instructions">
<h3>Instructions</h3>
<p>· Type in only the name of the animal in singular form. Eg: dog, cat, lion, etc</p>
<p>· Each correct answer is 5 points </p>
<p>· You have 3 chances to guess the correct animal </p>
<p>· If you fail to guess the correct animal after your three chances are up, you lose 1 point </p>
<p>· Use the submit button or your enter key to submit an answer</p>
<a class="btn" href="game.html">Start Game</a>
</div>
<footer class="footer">
<div class="main">
<h4>Check Me Out On</h4>
<div class="social">
<!-- Mail -->
<a href="mailto:tobijudah@gmail.com" target="_blank">
<i class="far fa-envelope fa-lg fa-2x"> </i>
</a>
<!-- Twitter -->
<a href="https://twitter.com/tobijudah" target="_blank">
<i class="fab fa-twitter fa-lg fa-2x"> </i>
</a>
<!-- GitHub -->
<a href="https://github.com/Tobijudah" target="_blank">
<i class="fab fa-github fa-lg fa-2x"> </i>
</a>
<!--Linkedin -->
<a href="https://www.linkedin.com/in/oluwatobiju-judah-omotosho" target="_blank">
<i class="fab fa-linkedin-in fa-lg fa-2x"> </i>
</a>
</div>
</div>
<div class="text">
<p>© 2020 Tobijudah</p>
</div>
</footer>
</div>
</body>
</html>