-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.25 KB
/
index.html
File metadata and controls
28 lines (27 loc) · 1.25 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
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title> COLOR GAME </title>
<link rel="stylesheet" type="text/css" href="colorGame.css">
</head>
<body>
<div class="display-4" align="center" >🅣🅗🅔 🅖🅡🅔🅐🅣</div>
<div class="display-2" align="center"> Color here</div>
<div class="display-4" align="center" >🅖🅐🅜🅔</div>
<div id="stripe" align="center">
<div ><button class="btn btn-primary">New Colors</button></div>
<span id="status"> Wrong Answer </span>
<button id="ebtn" class="btn btn-success">Easy</button>
<button id="hbtn"class="btn btn-danger">Hard</button>
</div>
<div id="container">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<script type="text/javascript" src="colorGame.js"></script>
</body>
</html>