-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (100 loc) · 3.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic page needs -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bokyfied</title>
<meta name="description" content="" />
<meta name="author" content="" />
<link
rel="shortcut icon"
href="./img/Icons/favicon.png"
type="image/x-icon"
/>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<link rel="stylesheet" type="text/css" href="./css/base.css" />
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<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=Sora&display=swap" rel="stylesheet">
<link
href="//fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="container">
<!-- Header and first page interface. -->
<div id="header">
<div>
<img
src="./img/icons/icon_bokyfied.svg"
alt=""
class="d-inline-block align-text-top"
id="headerLogo_svg"
/>
<h1>Bookyfied</h1>
</div>
</div>
<!-- Secondary Page interface–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container_2">
<div class="row">
<form action="">
<div class="five columns">
<label for="name">Book</label>
<input type="text" class="u-full-width" id="name" />
</div>
<div class="five columns">
<label for="author">Author</label>
<input type="text" class="u-full-width" id="author" />
</div>
<div class="two columns">
<label for="status">Status</label>
<select name="status" id="status" class="u-full-width">
<option value="read">Read</option>
<option value="not read">Not read</option>
</select>
</div>
<input type="submit" value="Add Book" class="button-primary" />
</form>
</div>
<div class="row">
<div class="twelve columns"></div>
<table class="twelve columns">
<tr>
<th>Name</th>
<th>Author</th>
<th>Status</th>
<th></th>
</tr>
<tbody id="book-table-body"></tbody>
</table>
</div>
</div>
<h3>What is this thing?</h3>
<p>
Bookyfied is a light App web based book tracking web application built in HTML, CSS,
and vanilla JavaScript.
It was created for the completion of LIBRARY project of <a href="www.theodinproject.com">
The Odin Project's</a
>
Full Stack JavaScript Path curriculum.
</p>
<a class="git_hub " href="https://github.com/davecarrijo">Visit GitHub Repository</a>
<div class="copyright">
<h7>MIT License</h7>
<p class="text-muted">Copyright © 2022 David Carrijo </p>
</div>
</body>
<!-- Java Script -->
<script src="./script/script.js" type="text/javascript"></script>
<script src="./script.js" type="text/javascript"></script>
</html>