-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd65122
commit 0d09973
Showing
3 changed files
with
148 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Library</title> | ||
<script src="script.js" defer></script> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Ga+Maamli&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Library</title> | ||
<script src="script.js" defer></script> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Ga+Maamli&display=swap" rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" | ||
rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||
rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="main-container"> | ||
<header class="header-section"> | ||
<div class="logo"> | ||
<img src="images/icons8-library-96.png" alt="" class="logo-img" /> | ||
</div> | ||
<h1 class="main-title">Library</h1> | ||
</header> | ||
|
||
<body> | ||
<div class="main-container"> | ||
<header class="header-section"> | ||
<div class="logo"> | ||
<img src="images/icons8-library-96.png" alt="" class="logo-img"> | ||
</div> | ||
<h1 class="main-title">Library</h1> | ||
</header> | ||
|
||
<main class="main-content"> | ||
<h2 class="description description-title">About</h2> | ||
<p class="description"> | ||
It's a small project just for learnig purpose... | ||
It's a simple webpage where you can add books to the library and the you can also display the as well. | ||
|
||
</p> | ||
<button class="newBook">New Book</button> | ||
</main> | ||
<button class="displayBtn">Display</button> | ||
<section class="output-display"> | ||
|
||
</section> | ||
<footer class="footer"> | ||
<p>It's a beta version and still under development</p> | ||
</footer> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> | ||
<main class="main-content"> | ||
<h2 class="description description-title">About</h2> | ||
<p class="description"> | ||
It's a small project just for learnig purpose... It's a simple webpage | ||
where you can add books to the library and the you can also display | ||
the as well. | ||
</p> | ||
<button class="newBook">New Book</button> | ||
</main> | ||
<button class="displayBtn">Display</button> | ||
<section class="output-display"></section> | ||
<footer class="footer"> | ||
<p>It's a beta version and still under development</p> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.