-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
40 lines (37 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GDSC Blog Template</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<!-- Custom Style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="nav">
<div class="nav-brand">
<a href="index.html" class="text-gray">GDSC • Build Personal Blog with Firebase</a>
</div>
</nav>
<!-- create filter item and css decorate-->
<div class="main-container">
<h2>Blog item</h2>
<p>It's the page where each of blog details and contents shown.</p>
<div class="filter-container">
<hr class="separator">
<div class="blog-content" id="blog-content">
<div class="blog-id" id="blog-id"> Hello</div>
<h1>This is blog title</h1>
<div class="blog-date">
<span><i class="fas fa-calendar"></i> December 19, 2021</span>
</div>
<p>This is content</p>
</div>
</div>
</div>
<script src="script_blog.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
</body>
</html>