-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 1.01 KB
/
index.html
File metadata and controls
23 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Coursera - HTML, CSS, Javascript</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Coursera - HTML, CSS, and Javascript for Web Developers</h1>
<a href="module2-solution/index.html" class="btn btn-lg btn-primary">Module 2</a>
<a href="module3-solution/index.html" class="btn btn-lg btn-primary">Module 3</a>
<a href="module4-solution/index.html" class="btn btn-lg btn-primary">Module 4</a>
<a href="module5-solution/index.html" class="btn btn-lg btn-primary">Module 5</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>