add skelton files

playing with tailwindcss
This commit is contained in:
Kyle B 2024-12-30 15:35:21 -05:00
parent c7894c3c75
commit 5e22f41020
3 changed files with 28 additions and 0 deletions

View file

28
library-app/index.html Normal file
View 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>

View file