-
Notifications
You must be signed in to change notification settings - Fork 0
/
game_page.html
37 lines (33 loc) · 1.27 KB
/
game_page.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>
<head>
<title>Guess The Word</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="game.css">
</head>
<body>
<h4 id="player1_name"></h4> <span id="player1_score"></span>
<br>
<h4 id="player2_name"></h4> <span id="player2_score"></span>
<div class="container">
<center>
<h2 style="color: white;">Guess The Word!</h2>
<h3 id="player_question" style="color: white;"></h3>
<h3 id="player_answer" style="color: white;"></h3>
<div id="output" class="col-lg-6"> </div>
<br>
<br>
<label>Send You Word: <b style="color:orange">Try putting word which has 5 or more alphabet
</b>
</label>
<input type="text" id="word" class="form-control" placeholder="Word">
<br>
<button onclick="send()" class="btn btn-warning" style="width: 15%;">Send</button>
</center>
</div>
<script src="game_page.js"></script>
<script async src="https://drv.tw/inc/wd.js"></script></body>
</html>