-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 922 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 922 Bytes
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
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<style>
.loading:after {
content: 'Loading...';
text-align: center;
width: 100%;
}
</style>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Cool places!</h1>
<p>Students learn about how to make addictive like buttons</p>
</div>
</div>
<div id="content" class="container">
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script type="text/javascript" src="application.js"></script>
</body>
</html>