mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 04:45:36 -04:00
27 lines
No EOL
581 B
HTML
27 lines
No EOL
581 B
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="css/style.css">
|
|
<title>Anonymous Library</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<nav class="navbar">
|
|
<h1 class="header">Anonymous BookClub</h1>
|
|
<ul>
|
|
<li>Search Books</li>
|
|
<li>Add Book</li>
|
|
</ul>
|
|
</nav>
|
|
<div class="content">
|
|
|
|
</div>
|
|
<footer>
|
|
|
|
</footer>
|
|
</div>
|
|
<script src="js/script.js"></script>
|
|
</body>
|
|
</html> |