-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
23 lines (23 loc) · 918 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Gram Feed - Simple Instagram Feed</title>
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<div id="wrapper">
<h1 id="logo"><span class="blue">gram</span>Feed</h1>
<div class="content group">
<ul class="feed"></ul>
</div>
<!--<div class="paging"><span class="view-more" href="#">View More</span></div>-->
</div>
</body>
</html>