-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (37 loc) · 1.19 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JSON Server Blog</title>
<link rel="stylesheet" href="style.css" />
<script src="./js/index.js" defer></script>
</head>
<body>
<nav class="navbar container">
<div class="brand">
<a href="./index.html"> Blog </a>
</div>
<div class="menu">
<a href="./index.html">Home</a>
<a href="./create.html">Create</a>
</div>
</nav>
<section id="blogs-container" class="container">
<h1 id="heading">Blogs List</h1>
<!-- Blogs inject here -->
<!-- <div class="card">
<h3>- Title</h3>
<p class="body">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus, harum?
Omnis consectetur possimus nesciunt porro debitis, explicabo voluptas
maiores illum, eveniet eum vero a itaque, vitae minima reprehenderit
expedita. Voluptas.
</p>
<div class="flex-group">
<a href="./details.html?id=1">Read More...</a>
<h5 class="author">By ABC</h5>
</div> -->
</section>
</body>
</html>