-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
50 lines (45 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-control" content="public"><meta property="og:type" content="blog"/>
<meta property="og:type" content="blog"/>
<meta property="og:title" content="CCCJ Game 101"/>
<meta property="og:url" content="http://simplyniceweb.github.io"/>
<meta property="og:image" content="http://simplyniceweb.github.io/img/bg.jpg"/>
<title>CCCJ Game 101</title>
<!-- Bootstrap -->
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
<link href="/css/main.css" rel="stylesheet">
<link href="/css/index.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="col-lg-4 col-lg-offset-4 play-btn-wrapper">
<h1 class="lets-play text-center">Let's play!</h1>
<a href="letters.html" class="btn btn-block btn-warning btn-lg">
<i class="fa fa-fw fa-3x fa-play-circle-o"></i>
</a>
</div>
</div>
<div class="hide-audio">
<audio controls autoplay loop> <!-- autoplay -->
<source src="/mp3/Five%20Little%20Ducks.ogg" type="audio/ogg">
<source src="/mp3/Five%20Little%20Ducks.mp3" type="audio/mpeg">
<video src="/mp3/Five%20Little%20Ducks.mp3" onload="this.play();"></video>
Your browser does not support the audio element.
</audio>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>