-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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="./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=Roboto:wght@300&family=Whisper&display=swap" rel="stylesheet">
<title>Library</title>
</head>
<body>
<script src="./script.js" async defer></script>
<div>
<div class="header">
<div class="header-logo">Library</div>
<ul>
<il><a href="https://github.com/xonin-hush/Odin-Etch-a-Sketch">Repo's page</a></il>
<il><a href="https://github.com/xonin-hush/"> Visit my github page</a></il>
<il><a href="https://waitbutwhy.com/2013/10/why-procrastinators-procrastinate.html">Why procrastinators
procrastinate</a></il>
</ul>
</div>
<div id="welcome">Welcome To Our Library</div>
<dialog>
<form>
Enter your book's details
<div class="label-input">
<input type="text" id="book-name" name="book-name" required>
<label for="first-name" id="name-label">Book's Name </label>
</div>
<div class="label-input">
<input type="text" id="author-name" name="author-name" required>
<label for="author-name" id="author-label">Author's Name</label>
</div>
<div class="label-input">
<input type="number" id="pages-number" name="pages-number" required>
<label for="pages-number" id="pages-label"> Pages' Number</label>
</div>
</form>
<button id="submit" type="submit" value="Submit">Submit</button>
<button id="cancel">Cancel</button>
</dialog>
<div class="cards"></div>
<div id="add-button">
<button id="show-button">Add new book</button>
</div>
</div>
<div class="footer">made by Xonin</div>
</body>
</html>