-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (39 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PHP 101 Exercises | Dev Catalyst</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- styles -->
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<style>
body {padding-top: 40px; font-size:18px;}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
z-index: 2;
color: #fff;
background-color: #444;
border-color: #444;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>PHP 101 Exercises - Dev Catalyst</h1>
<h2>Exercise pages</h2>
<div class="list-group">
<a class="list-group-item active">Level 1</a>
<a href="exercises/level-1/exercise-1.html" class="list-group-item"><i class="glyphicon glyphicon-link"></i> Exercise 1 - ???</a>
</div>
</div>
</div>
</div> <!-- /container -->
<footer>
<p class="text-center">® Dev Catalyst</p>
</footer>
<!-- scripts -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>