-
Notifications
You must be signed in to change notification settings - Fork 0
/
rgbgamecolor.html
84 lines (65 loc) · 2.39 KB
/
rgbgamecolor.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="style.css" >
<link rel="stylesheet" href="styleBoot.css" >
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>Document</title>
<script src="colormanupulation.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="jquerylatest3.4.1.js"></script>
</head>
<body>
<div class="jumbotron jumbotron-fluid" id="top">
<div class="container" align="center">
<h1 class="display-4">RGB Game</h1>
<p class="lead"><span id="colorCode"> Color Code : RGB() </span></p>
</div>
</div>
<a class="btn btn-primary mx-5" onclick="colorsetup();">COLOR Game</a>
<br>
<br>
<!-- The Modal -->
<div id="myModal1" class="modal">
<!-- Modal content -->
<div class="modal-content" align="center" >
<div class="w3-container w3-teal">
<div align="right">
<span class="close" onclick="originalstate();">×</span>
</div>
<h2>Wrong</h2>
</div>
</div>
</div>
<div id="myModal2" class="modal">
<!-- Modal content -->
<div class="modal-content" align="center" >
<div class="w3-container w3-teal">
<div align="right">
<span class="close" onclick="originalstate();">×</span>
</div>
<h2>Correct</h2>
</div>
</div>
</div>
<div class="container" >
<div class="box mx-4" id ="first" data-toggle="tooltip" data-placement="top" title="Choose One Color" >
</div>
<div class="box mx-4" id ="second" data-toggle="tooltip" data-placement="top" title="Choose One Color" >
</div>
<div class="box mx-4" id ="third" data-toggle="tooltip" data-placement="top" title="Choose One Color" >
</div>
<div class="box mx-4" id ="fourth" data-toggle="tooltip" data-placement="top" title="Choose One Color" >
</div>
<div class="box mx-4" id ="fifth" data-toggle="tooltip" data-placement="top" title="Choose One Color" >
</div>
<div class="box mx-4" id ="sixth" data-toggle="tooltip" data-placement="top" title="Choose One Color" >
</div>
</div>
</body>
</html>