-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmake-player.html
More file actions
29 lines (26 loc) · 861 Bytes
/
make-player.html
File metadata and controls
29 lines (26 loc) · 861 Bytes
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>
<head>
<link href="https://fonts.googleapis.com/css?family=Ravi+Prakash" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="main.js"></script>
<title>Make Players</title>
</head>
<body>
<h1>Pick your character</h1>
<!-- Form to make player names that will be saved for gameboard-->
<form class="mkChar" action="gameboard.html" method="get">
<section class="makePlayer" id="left">
<h2>Player 1</h2>
<img src="images/fire.png">
<input class="in" type="text" name="Player 1" id="makep1">
</section>
<section class="makePlayer" id="right">
<h2>Player 2</h2>
<img src="images/water.png">
<input class="in" type="text" name="Player 2" id='makep2'>
</section>
<input class="btn" type="submit" value="Begin Game" onclick="location.href='gameboard.html'">
</form>
</body>
</html>