-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.82 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.82 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
29
30
31
32
33
34
35
36
37
38
39
<html xmlns="http://www.w3.org/1999/html">
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/ocanvas/2.8.3/ocanvas.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<link href='//fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" />
<script src="script.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-primary text-center">Simple Simon Memory Game</h1>
<h3 class="text-warning text-center">Free Code Camp</h3>
</div>
<div class="row">
<div class="col-xs-12">
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound1.mp3" preload="auto">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound2.mp3" preload="auto">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound3.mp3" preload="auto">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound4.mp3" preload="auto">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<audio src="http://res.cloudinary.com/remirol/video/upload/v1456064916/30755__hello-flowers__billy-the-boxer-count2_xiak4m.wav" preload="auto">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<canvas class="center-block" id="canvas" width="520" height="520"></canvas>
</div>
</div>
</div>
</body>
</html>