-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathletters.html
More file actions
executable file
·67 lines (60 loc) · 2.98 KB
/
letters.html
File metadata and controls
executable file
·67 lines (60 loc) · 2.98 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
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
<!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: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/letters.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">
<p class="text-center">
<a href="/"><i class="fa fa-fw fa-home fa-5x"></i></a>
</p>
</div>
<div class="container-fluid letters-wrapper" data-letter="A">
<div class="col-md-3 col-md-offset-3 col-sm-6 col-xs-12 text-center">
<img src="/img/letters/Letter-A.png" class="img-responsive letter-img">
</div>
<div class="col-md-6 col-sm-6 col-xs-12 forletters text-center">
<img src="/img/forletters/for-A.png" class="img-responsive for-img">
</div>
<div class="col-md-12 col-xs-12 arrows">
<div class="row">
<div class="col-md-4 col-md-offset-2 col-sm-6 col-xs-12">
<button class="btn btn-success btn-block btn-lg btn-prev"><i class="fa fa-fw fa-arrow-left fa-lg"></i> Previous</button>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<button class="btn btn-success btn-block btn-lg btn-next">Next <i class="fa fa-fw fa-arrow-right fa-lg"></i></button>
</div>
</div>
</div>
</div>
<div class="hide-audio">
<audio controls> <!-- autoplay loop -->
<source src="/mp3/Wheels%20On%20The%20Bus.ogg" type="audio/ogg">
<source src="/mp3/Wheels%20On%20The%20Bus.mp3" type="audio/mpeg">
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>
<script src="/js/jquery.functions.js"></script>
</body>
</html>