-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Vlad's Fun Games</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="full_page">
<header id="index_header">
<h1>Vlad's Fun Games</h1>
</header>
<main id="index_main">
<span class="game_wrapper">
<span id="rps" class="game">
<h2><a href="rps.html">Rock Paper Scissors</a></h2>
</span>
</span>
<span class="game_wrapper">
<span id="snake" class="game">
<h2><a href="snake.html">Classic Snake</a></h2>
</span>
</span>
<span class="game_wrapper">
<span id="jump" class="game">
<h2><a href="jump.html">Brain Training Simulator</a></h2>
</span>
</span>
</main>
<footer id="index_footer">
<p id="credits">This site was created for educational purposes only by someone at <a href="https://www.bellevuecollege.edu">Bellevue College</a></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>