-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
69 lines (56 loc) · 2.27 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1024">
<title>Readly : </title>
<link rel="stylesheet" href="css/blog.css">
<link rel="stylesheet" href="css/card.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,600&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<ul class="links-container">
<li class="link-item"><a href="index.html" class="link">home</a></li>
<li class="link-item"><a href="editor.html" class="link">editor</a></li>
</ul>
</nav>
<div class="blog">
<div class="banner-img">
<img src="" id="banner" alt="banner image">
<div class="box"></div>
</div>
<div class="text-center">
<h1 class="title"></h1>
</div>
<p class="published"><span>Ngày đăng: </span></p>
<div class="article">
</div>
<div class="blog-footer">
<i class="tag"><span>tag: </span></i>
<div class="dlt-btn">
<a id="delete-btn" href="#" class="btn dark">Xóa bài viết</a>
</div>
</div>
</div>
<div class="text-center">
<h1 class="sub-heading">Các bài tương tự</h1>
</div>
<!-- blog section -->
<section class="blogs-section">
<!-- <div class="blog-card">
<img src="" class="blog-image" alt="">
<h1 class="blog-title">Lorem ipsum dolor sit amet consectetur.</h1>
<p class="blog-overview">Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt incidunt fugiat quos porro repellat harum. Adipisci tempora corporis rem cum.</p>
<a href="/" class="btn dark">read</a>
</div> -->
</section>
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-firestore.js"></script>
<script src="js/firebase.js"></script>
<script src="js/index.js"></script>
<script src="js/blog.js"></script>
</body>
</html>