-
Notifications
You must be signed in to change notification settings - Fork 26
/
about.html
69 lines (62 loc) · 2.39 KB
/
about.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
<!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="icon" href="favicon.ico" />
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="about.css" />
<!-- Include bootstrap CSS framework -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/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">
<div>
<div id="picture" class="picture-box"><img src="placeholder.jpg" alt="random" /></div>
<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 of 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>
<div id="quote" class="quote-box bg-light text-dark">
<p class="quote">Words are cheap. Show me the code.</p>
<p class="author">Linus Torvalds</p>
</div>
</div>
</main>
<footer class="bg-dark text-white-50">
<div class="container-fluid">
<span class="text-reset">Author Name(s)</span>
<a class="text-reset" href="https://github.com/webprogramming260/simon-css">Source</a>
</div>
</footer>
</body>
</html>