forked from DevMountain/newsfeed-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 774 Bytes
/
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
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<style type="text/css">
body {
background-color: navajowhite;
}
.title {
margin-bottom: 75px;
font-size: 4em;
color: rgba(0, 0, 0, .5);
}
.newsfeed {
text-align: center;
}
p {
margin-bottom:50px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">Extra! Extra!</h1>
<div class="newsfeed">
</div>
</div>
</body>
</html>