-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.html
61 lines (55 loc) · 2.05 KB
/
start.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
<html>
<head>
<title>Simone's Ludo</title>
<link rel="stylesheet" type="text/css" href="start.css" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
<!--responsive viewport tag-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<form action="">
<div class="row">
<div class="col-25">
<label for="player1">Player 1</label>
</div>
<div class="col-75">
<input type="text" id="player1" name="player1" placeholder="Player 1">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="player2">Player 2</label>
</div>
<div class="col-75">
<input type="text" id="player2" name="player2" placeholder="Player 2">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="player3">Player 3</label>
</div>
<div class="col-75">
<input type="text" id="player3" name="player3" placeholder="Player 3">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="player4">Player 4</label>
</div>
<div class="col-75">
<input type="text" id="player4" name="player4" placeholder="Player 4">
</div>
</div>
<div class="row">
<input type="submit" value="Play">
</div>
</form>
</div>
<!-- BOTTOM RIGHT RIBBON-->
<a class="github-fork-ribbon right-bottom fixed" href="https://github.com/palewar/simple-ludo"
data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
<!-- BOTTOM RIGHT RIBBON-->
</body>
</html>