-
Notifications
You must be signed in to change notification settings - Fork 11
/
about.html
29 lines (29 loc) · 996 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Elizabeth McCready" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Alice&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
<title>Alice in Wonderland Game</title>
</head>
<body>
<h1>About This Project</h1>
<footer>
<li><a href="index.html">Index Page</a></li>
<li><a href="about.html">About Page</a></li>
<li><a href="https://github.com/GingerKiwi/alice-game">Alice-Game Repo</a></li>
</footer>
</body>
</html>