-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.68 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js" defer></script>
</head>
<body>
<dialog class="player-name-form">
<form action="" method="post">
<legend>State your Names</legend>
<div class="user-inputs">
<div class="player-one-div">
<label for="player-one">First Player:</label>
<input type="text" id="player-one" name="player-one" value="Player One">
</div>
<div class="player-two-div">
<label for="player-two">Second Player:</label>
<input type="text" id="player-two" name="player-two" value="Player Two">
</div>
</div>
<div class="submit-player-names">
<button type="submit">Submit</button>
</div>
</form>
</dialog>
<div class="header">
<h1>Tic Tac Toe</h1>
</div>
<div class="player-div"></div>
<div class="main">
<div class="board-div"></div>
<div class="reset-banner">
<button>Reset</button>
</div>
</div>
<div class="footer">
<div class="footer-text">
Created by M.e.l.
</div>
<div class="icon footer-icon">
<a href="https://github.com/mel-121821/tic-tac-toe/" target="_blank">
<object data="icon/github.svg" type="image/svg+xml" class="svg"></object>
</a>
</div>
</div>
</body>