-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmark.html
72 lines (68 loc) · 2.87 KB
/
bookmark.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Easy Learn - Bookmarks</title>
<link rel="stylesheet" href="vendors/bootstrap-3.3.7-dist/css/bootstrap.css">
<link rel="stylesheet" href="vendors/bootstrap-icons/bootstrap-icons.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section>
<nav class="top-nav bg-2 d-flex-sb">
<a href="dashboard.html"><i class="bi bi-house-fill"></i></a>
<h3>Bookmarks</h3>
<span><i class="bi bi-three-dots-vertical"></i></span>
</nav>
<div class="container-fluid bookmark-wrapper">
<div class="bookmark-container">
<ul>
<a href="#"><li class="d-flex-sb">
<div class="content">
<h4>Leonardo Ndunche</h4>
<p>For the sake of newbies...</p>
<small>23 Reviews</small>
</div>
<img src="img/feed-img/feed1.jpg">
</li></a>
<a href="#"><li class="d-flex-sb">
<div class="content">
<h4>Taofeek Ibrahim</h4>
<p>A Useful thread to begin with...</p>
<small>23 Reviews</small>
</div>
<img src="img/feed-img/feed2.jpg">
</li></a>
<a href="#"><li class="d-flex-sb">
<div class="content">
<h4>Taofeek Ibrahim</h4>
<p>A Useful thread to begin with...</p>
<small>23 Reviews</small>
</div>
<img src="img/feed-img/feed3.jpg">
</li></a>
<a href="#"><li class="d-flex-sb">
<div class="content">
<h4>Leonardo Ndunche</h4>
<p>For the sake of newbies...</p>
<small>23 Reviews</small>
</div>
<img src="img/feed-img/feed1.jpg">
</li></a>
<a href="#"><li class="d-flex-sb">
<div class="content">
<h4>Taofeek Ibrahim</h4>
<p>A Useful thread to begin with...</p>
<small>23 Reviews</small>
</div>
<img src="img/feed-img/feed2.jpg">
</li></a>
</ul>
</div>
</div>
</section>
<script src="js/jquery2.js"></script>
</body>
</html>