-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Horizontal Feed with VueJs</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="./dist/css/app.css" rel="stylesheet">
</head>
<body>
<div id="app">
<div class="row">
<div class="horizontal-feed">
<div class="header"><span>Header</span></div>
<div class="body">
<div>
<p>
<a href="#">Title</a> <span>Content</span>
</p>
</div>
<div class="cover"></div>
</div>
<div class="buttons">
<span class="previous"><i class="fa fa-angle-left"></i></span>
<span class="play"><i class="fa fa-play"></i></span>
<span class="next"><i class="fa fa-angle-right"></i></span>
</div>
</div>
</div>
</div>
<script src="./dist/js/app.js"></script>
</body>
</html>