-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.71 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Library</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<section class="hero is-primary is-bold">
<div class="hero-body top-hero">
<div class="container">
<h1 class="title is-family-code">
📚Library
</h1>
<h2 class="subtitle">
JS app to render objects {📙}
</h2>
</div>
</div>
</section>
<section class="hero is-primary">
<div class="hero-body btm-hero">
<div class="container">
<form action="" class="all-form">
<div class="is-inline-block in-form">
<div class="field is-inline-block book-error book">
<label class="label">Book Name</label>
<div class="control">
<input class="input book-name" type="text" placeholder="e.g. Mysterious Islands" required/>
</div>
<p class="help is-danger"></p>
</div>
<div class="field is-inline-block author-error authored">
<label class="label">Author</label>
<div class="control">
<input class="input author" type="text" placeholder="e.g. Jules Verene" required/>
</div>
<p class="help is-danger"></p>
</div>
<div class="field is-inline-block pages-error page">
<label class="label">Pages</label>
<div class="control">
<input class="input pages" type="number" min="1" placeholder="e.g. 307" required/>
</div>
<p class="help is-danger"></p>
</div>
</div>
<div class="is-block">
<div class="field is-inline-block">
<a class="button is-success is-focused saving" id="read">Read</a>
<div class="buttons is-inline-block">
<span class="button is-link" id="save">
Save Book
</span>
</div>
</div>
</div>
</form>
<br>
<div class="adder">
</div>
</div>
</div>
</section>
<script src="main.js"></script>
</body>
</html>