-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (19 loc) · 924 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="shortcut icon" href="./assets/api-icon.png" type="image/x-icon">
<script src="./js/scripts.js" defer></script>
<title>Fake Posts API</title>
</head>
<body class="bg-sky-950 flex items-center flex-col">
<header class="flex justify-center">
<h1 class="text-3xl text-sky-100 my-12 font-medium text-center tracking-widest uppercase bg-sky-900 w-40 p-3 rounded-full shadow-md border-l-8 border-r-8 border-emerald-700">Posts</h1>
</header>
<section class="card flex flex-wrap justify-center">
</section>
<button class="addBtn text-sky-100 font-bold tracking-widest bg-emerald-700 p-3 rounded-xl shadow-md w-32 m-7 hover:bg-sky-700">More posts</button>
</body>
</html>