-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (71 loc) · 2.33 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
<!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">
<link rel="stylesheet" href="css/flexboxgrid.css" type="text/css">
<link rel="stylesheet" href="css/app.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,600,600i" rel="stylesheet">
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="js/app.js"></script>
<title>Mastermind</title>
</head>
<body>
<div class="row center-xs">
<div class="col-xs-6">
<header class="col-xs">
<h1 class="title">Mastermind game</h1>
</header>
<div id="grid-wrap" class="col-xs">
<div class="grid">
<span class="ball col-xs-3 one"></span>
<span class="ball col-xs-3 two"></span>
<span class="ball col-xs-3 three"></span>
<span class="ball col-xs-3 four"></span>
</div>
</div>
<div class="col-xs">
<button class="btncheck">Check !</button>
<div>
<h2>Your result is:</h2>
<div class="grid-result">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
</div>
</div>
</div>
<!--<div class="col-xs">
<div class="colors">
<span class="green">
<input type="radio" name="color" value="green" id="one">
<label for="one"></label>
</span>
<span class="blue">
<input type="radio" name="color" value="blue" id="two">
<labe for="two"></labe>
</span>
<span class="red">
<input type="radio" name="color" value="red" id="three">
<label for="three"></label>
</span>
<span class="orange">
<input type="radio" name="color" value="orange" id="four">
<label for="four"></label>
</span>
<span class="purple">
<input type="radio" name="color" value="purple" id="five">
<label for="five"></label>
</span>
<span class="black">
<input type="radio" name="color" value="black" id="six">
<label for="six"></label>
</span>
</div>
</div>-->
</div>
</body>
</html>