-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·72 lines (67 loc) · 3.04 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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.1/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/index.js"></script>
<title>Home</title>
</head>
<body>
<header>
<nav>
<div>
<li class="float-left">Play2Learn <i class="fa fa-user-graduate"></i></li>
</div>
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Games<i class="fa fa-arrow-down" id="arrow"></i></a>
<!-- arrow icon needs screen width of at least 466px -->
<ul>
<li><a href="games/anagram-hunt.html">Anagram Hunt</a></li>
<li><a href="games/math-facts.html">Math Facts</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</nav>
</header>
<main>
<h3 id="quotestitle">Observations, Advice, and Other Quotes:</h3>
<section id="quotes"></section>
<section id=gamessection>
<article class="games" id="article1">
<h2 class="gamestitle">Math Facts</h2>
<p>This is a simple game for practicing addition, subtraction, multiplication, and division. The problem appears with a text field below it. Enter values using the keyboard or the buttons on the screen, and see how many correct answers you can get in 30 seconds.</p>
<button class="linktogames"><a href="games/math-facts.html">Play</a></button>
</article>
<article class="games" id="article2">
<h2 class="gamestitle">Anagram Hunt</h2>
<p>An anagram is a word made by rearranging the letters of another word. For example, post, pots, opts, tops, and spot are all anagrams of stop. The object of the Anagram Hunt game is to find all the anagrams for a given word.</p>
<button class="linktogames"><a href="games/anagram-hunt.html">Play</a></button>
</article>
</section>
</main>
<footer>
<p class="copyright">© 2022 bgroveben. All rights reserved.</p>
<address>
<a href="contact-us.html">
<i class="fas fa-envelope-square"></i></a>
<a href="https://www.instagram.com">
<i class="fab fa-instagram"></i></a>
<a href="https://twitter.com">
<i class="fab fa-twitter-square"></i></a>
<a href="https://www.facebook.com">
<i class="fab fa-facebook-square"></i></a>
</address>
</footer>
</body>
</html>