add skelton files
playing with tailwindcss
This commit is contained in:
parent
c7894c3c75
commit
5e22f41020
3 changed files with 28 additions and 0 deletions
0
library-app/css/styles.css
Normal file
0
library-app/css/styles.css
Normal file
28
library-app/index.html
Normal file
28
library-app/index.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Library App</title>
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script src="js/javascript.js"></script>
|
||||
</head>
|
||||
<body class="bg-gray-50">
|
||||
<div class="container grid grid-cols-3 gap-4 mx-auto p-6">
|
||||
<div class="p-6 border border-slate-300 bg-white rounded-xl shadow-xl flex flex-col gap-x-4">
|
||||
<h3>Book Title</h3>
|
||||
<p>Book Author</p>
|
||||
<p>Total Pages: 300</p>
|
||||
<p>Have Read</p>
|
||||
</div>
|
||||
<div class="p-6 border border-slate-300 bg-white rounded-xl shadow-xl flex flex-col gap-x-4">
|
||||
<h3>Book Title</h3>
|
||||
<p>Book Author</p>
|
||||
<p>Total Pages: 300</p>
|
||||
<p>Have Read</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
0
library-app/js/javascript.js
Normal file
0
library-app/js/javascript.js
Normal file
Loading…
Reference in a new issue