-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
37 lines (34 loc) · 1.06 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tac</title>
<script src="jquery-2.1.4.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Modal -->
<div id="game_over_modal" class="modalDialog">
<div>
<h2 id="game_over_message">You Win!</h2>
<p>Would you like to play again?</p>
<div>
<button id="btn_play_again" class="modalButton">Yes</button>
<button id="btn_end_game" class="modalButton">No</button>
</div>
</div>
</div>
<div class="page_content">
<div id="popup_container">
<h5>Play Tic Tac Toe Against the Computer</h5>
<table cellspacing="0" id="tac_board">
</table>
<div class="major_button" id="options_button">
<img src="settingsIcon.png" alt="options" class="options_icon" />
<span>Options</span>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>