-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
56 lines (53 loc) · 1.98 KB
/
Index.html
File metadata and controls
56 lines (53 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" integrity="sha384-aUGj/X2zp5rLCbBxumKTCw2Z50WgIr1vs/PFN4praOTvYXWlVyh2UtNUU0KAUhAX" crossorigin="anonymous">
<link rel="stylesheet" href="opener.css">
</head>
<body>
<div class = 'container'>
<div class = 'row'>
<div class = 'col-md-12'>
<h1>Pokemon Connect Four</h1>
</div>
</div>
<div class = 'row input'>
<a href = 'connectFour.html'><input type = 'button' class = 'btn btn-info' value = 'Play Now!'/></a>
</div>
<div class = 'row two'>
<div class = 'col-md-6 left'>
<h3>How to Play:</h3>
<br>
<br>
<p>
In the first screen use WASD to move your avatar (red square).
</p>
<p>
Wandering into the Gary avatar will result in a two-player game.
</p>
<p>
Wandering into the tall grass (green squares) will ultimately result in random one-player games against Pokemon.
</p>
<p>
You can adjust your player name or Gary's name in the form above the overhead map. Play with your friends!
</p>
</div>
<div class = 'col-md-6 right'>
</div>
</div>
<div class = 'row legal'>
<div class = 'col-md-12'>
<p>
All content related to Pokemon is owned by and distributed solely by Nintendo
and The Pokemon Company and affiliates. I claim no monetary gain from this project and I use
all resources from publicly available sources. In no way do I claim to own
the IP of Nintendo.
</p>
</div>
</div>
</div>
</body>
</html>