-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·59 lines (59 loc) · 2.73 KB
/
about.html
File metadata and controls
executable file
·59 lines (59 loc) · 2.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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">
<title>About</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>
<section>
<article id="about">
<h2 id="abouttitle">About Us</h2>
<p>This website is the first graded project in the Full Stack Software Developer course offered by ed2go. Using the HTML, CSS, and JavaScript skills I have learned, I've built the front-end of a website called Play2Learn. This website includes 2 games, Anagram Hunt and Math Facts, but only the Math Facts game is functional.</p>
<p>ed2go was founded in 1997 to provide quality education the fastest way possible — online. What began as an email correspondent program has grown into a leading online continuing education provider, reaching life - long learners in 50 states and more than 16 countries. We believe that anyone can learn, and we exist to empower lives through education.</p>
</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>