odin-codespace/library/index.html
2023-11-21 07:03:57 -05:00

45 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="css/style.css">
<title>Anonymous Library</title>
</head>
<body>
<div class="container">
<nav class="navbar">
<h1 class="header">Anonymous BookClub</h1>
<button class="show-modal btn">Add Book</button>
</nav>
<div class="content">
<div class="book-cards">
</div>
</div>
<footer>
<div class="contact"></div>
<div class="icons"></div>
</footer>
</div>
<dialog class="modal">
<main>
<div class="form">
<form action="" >
<input type="text" name="title" id="title">
<input type="text" name="author" id="author">
<button type="submit" id="submit-btn" class="btn">Submit</button>
</form>
<button class="btn close-btn">
<span class="material-symbols-outlined">close</span>
</button>
</div>
</main>
</dialog>
<script src="js/script.js"></script>
</body>
</html>