-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (111 loc) · 6.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>CARDS</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link href="jquery-ui-1.12.1/jquery-ui.min.css">
<link href="jquery-ui-1.12.1/jquery-ui.structure.min.css">
<link href="jquery-ui-1.12.1/jquery-ui.structure.min.css">
<link href="jquery-ui-1.12.1/jquery-ui.theme.min.css">
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-10" style="padding: 0;">
<div class="modal fade" id="staticBackdrop" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Do you want to play</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="quit()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p hidden id="winner" style="font-weight: bolder; color: red; text-align: center; font-size: x-large;">PLAYER WON!</p>
<div id="myName">
<label for="names">Pick a name</label>
<input list="my_name" name="player" id="names" autofocus>
<datalist id="my_name">
</datalist>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="nnow()">Play</button>
<button type="button" class="btn btn-danger" onclick="quit()">Quit</button>
</div>
</div>
</div>
</div>
<div id="scroller" style="width: 100%; overflow-x: hidden; position: relative;">
<div id="computer">
</div>
<div id="center" >
<div id="market">
<div class="temp card fas fa-whot twe">
<div class="temp">
<p style="color:white" class="ones whot-letter">whot</p>
<p style="color: white" class="twos whot-letter">whot</p>
</div>
</div>
</div>
<div id="message_option" >
<div id="twenty" style="display: none;">
<div class="twentyShape" id="square">
<div><i class="fas fa-square"></i></div>
</div>
<div class="twentyShape" id="star">
<div><i class="fas fa-star"></i></div>
</div>
<div class="twentyShape" id="circle">
<div><i class="fas fa-circle"></i></div>
</div>
<div class="twentyShape" id="cross">
<div><i class="fas fa-cross"></i></div>
</div>
<div class="twentyShape" id="triangle">
<div><i class="fas fa-play"></i></div>
</div>
</div>
<div class="top" >
<p>
<h2>Player 1's turn</h2>
</p>
</div>
</div>
<div id="middle">
</div>
</div>
<div id="player">
</div>
</div>
</div>
<div class="col-2" id="score-board">
<table class="table table-striped text-center">
<thead class="thead-dark text-white">
<tr>
<th class="text-danger">SCORE LOG</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div id="songControl">
<button onclick="musicControl()" class="btn btn-danger btn-block"> <i class="fas fa-pause-circle"></i></button>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="jquery-3.5.1.min.js"></script>
<script src="jquery-ui-1.12.1/jquery-ui.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>