-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
67 lines (58 loc) · 2.28 KB
/
Copy pathabout.html
File metadata and controls
67 lines (58 loc) · 2.28 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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width", initial-scale="1.0" />
<title>About</title>
<link rel="stylesheet" href="main.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
</head>
<body class="bg-dark text-light">
<header class="container-fluid">
<nav class="navbar fixed-top navbar-dark">
<a class="navbar-brand" href="#">Simon<sup>®</sup></a>
<menu class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="play.html">Play</a>
</li>
<li class="nav-item">
<a class="nav-link" href="scores.html">Scores</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
</menu>
</nav>
</header>
<main class="container-fluid bg-secondary text-center">
<p>
Simon is a repetitive memory game where you follow the demonstrated
color sequence until you make a mistake. The longer the sequence you
repeat, the greater your score.
</p>
<p>
The name Simon is a registered trademark owned by Milton-Bradley. Our
use of the name and the game is for non-profit educational use only. No
part of this code or program should be used outside of that definition.
</p>
</main>
<footer class="bg-dark text-dark text-muted">
<div class="container-fluid">
<span class="text-reset">Nathan Roberts</span>
<a
class="text-reset"
href="https://github.com/nkroberts01/simon.git"
>Source</a
>
</div>
</footer>
</body>
</html>