-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (57 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<title>SIMON GAME</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Spectral:200" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
</head>
<body>
<div id="wrapper"class="row">
<div id="top-left" class="col-xs-6">
</div>
<div id="top-right" class="col-xs-6">
</div>
<div id="bottom-left" class="col-xs-6">
</div>
<div id="bottom-right" class="col-xs-6">
</div>
<div id="center" class="">
<h1>SIMON<sup>©</sup></h1>
<div id="start-btn" class="btn">
Start
</div>
<div id="strict-btn" class="btn">
Strict
</div>
<div id="display">
<span id="error" style="margin-bottom:0px;display:inline-block;">
</span>
<span id="isstrict"></span> <span id="level"> 1</span>
</div>
</div>
<div class="by">
Made with <i class="glyphicon glyphicon-heart" style="color:red;"></i> by <a href="https://github.com/fodilo" target="_blank" class="label label-danger">FODIL</a>
</div>
</div>
<audio id="audio1" src="https://s3.amazonaws.com/freecodecamp/simonSound1.mp3"></audio>
<audio id="audio2" src="https://s3.amazonaws.com/freecodecamp/simonSound2.mp3"></audio>
<audio id="audio3" src="https://s3.amazonaws.com/freecodecamp/simonSound3.mp3"></audio>
<audio id="audio4" src="https://s3.amazonaws.com/freecodecamp/simonSound4.mp3"></audio>
<audio id="audioE" src="https://s3.amazonaws.com/freecodecamp/simonSound4.mp3"></audio>
<div id="mymodal" class="modal fade"aria-labelledby="myModalLabel">>
<div class="modal-dialog" role="document">
<div class="modal-content"style="height:200px;text-align:center;">
<h1 style="color:red;">Congrats, You have won</h1>
</div>
</div>
</div>
<script type="text/javascript" src="script.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>