-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (52 loc) · 2.16 KB
/
index.html
File metadata and controls
60 lines (52 loc) · 2.16 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Hello, world!</title>
<!-- Vendor CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/css/fontawesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body>
<div class="container">
<!-- POSTS -->
<div class="post-container">
<div class="post-owner">
<div class="post-owner-img">
<img src="http://placehold.it/200/f00" alt="Post Owner Image">
</div><!-- end post-owner-img -->
<div class="post-owner-info">
<span>Slam Dank</span>
</div><!-- end post-owner-info -->
</div><!-- end post-owner -->
<div class="post-img">
<img src="http://placehold.it/300/300" alt="Post Main Image">
</div><!-- end post-img -->
<div class="post-engagement">
<span><i class="fas fa-heart"></i></span><!-- like icon -->
<span>225 likes</span><!-- likes counter -->
<span><i class="fas fa-comment"></i></span><!-- comment icon -->
<span>104 comments</span><!-- comments counter-->
<span><i class="fas fa-save"></i></span><!-- save icon -->
</div><!-- end post-engagement -->
<div class="post-description">
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Qui excepturi, repellendus incidunt quos dolorum nihil optio accusamus molestiae tempore mollitia accusantium fugiat quidem, ratione nostrum alias inventore quae eaque dicta!</p>
</div><!-- post-description -->
<div class="post-comments">
<input type="text" placeholder="Write a comment">
</div><!-- end post-comments -->
</div><!-- end post-container -->
</div><!-- end container -->
<!-- Vendor JS -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<!-- Custom Js -->
<script src="assets/js/custom.js"></script>
</body>
</html>