-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700&family=Raleway:wght@100;200;300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/buttons.css">
<title>Bokintocean: Save your books</title>
</head>
<body>
<!-- HEADER SECTION -->
<div class="intro-section">
<h1 class="intro-title">
<a href="./index.html">Bookintocean</a>
</h1>
</div>
<!-- BOOKS SECTION -->
<section id="intro_books" class="intro_books">
<div id="temp" class="temp">
<h3>Add a new book</h3>
<form class="add-book">
<div class="book-infos">
<input type="text" placeholder="Title" id="input-book-title">
<input type="text" placeholder="Author" id="input-book-author">
</div>
<button type="button" class="button" id="input-submit">ADD BOOK</button>
<button type="button" class="button" id="search-book">Download Book</button>
<button type="button" class="button" id="your-books">Your books</button>
</form>
</div>
</section>
<script src="./scripts/index.js"></script>
</body>
</html>