top-javascript-projects/library-app/index.html

28 lines
938 B
HTML
Raw Normal View History

<!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>