-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.3 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
<html>
<head>
<title>Player Chooser</title>
<link href="style.css" rel="stylesheet">
<meta charset="utf-8">
<meta name="author" content="MrSpiffyClean">
<meta name="description" content="A simple way to choose the first player in a board game.">
</head>
<script defer src="script.js"></script>
<body>
<div class="top_container">
<div class="title_div">
<h1>Player Chooser</h1>
</div>
</div>
<div class="middle_container">
<div class="player_holder">
<h2>Player Names</h2>
</div>
<!-- <div class="spacer"></div> -->
<div class="middle_element">
<p>Enter the name of a player in the game, then press Next Player or Choose.</p>
<div class="middle_element_container">
<div class="input_field_container">
<input type="text" class="input_field"></input>
</div>
<button class="button_add">Next Player</button>
<button class="button_choose">Choose</button>
</div>
<!-- check for inspiration https://css-tricks.com/custom-styling-form-inputs-with-modern-css-features/ -->
</div>
<!-- <div class="spacer"></div> -->
<div class="right_side_space">
</div>
</div>
</body>
</html>
<!-- https://www.schemecolor.com/brilliant-pastel.php -->
<!-- https://www.schemecolor.com/pastle-2.php -->