-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.09 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
<!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">
<title>MyBooks</title>
<link rel="icon" href="res/bookround.png" type="image/x-icon">
<link rel="stylesheet" href="css/index.css">
<meta name="description" content="MyBooks is a web app that helps you quickly search for books using name or ISBN number, from google books, in a much more userfriendly design.">
</head>
<body>
<div id="content">
<div id="header">
<h1>MyBooks</h1>
</div>
<div id="midpart">
<div id="booknameipt"> <input type="text" placeholder="Enter the ISBN or Name of the Book" id="bookid"
title='Enter Text and press "enter"'><img id="schimg" src="res/searchicon.webp" alt="search"> </div>
</div>
<div id="datapart">
</div>
<div id="footer">💖 A simple project by sreejith KS 💖</div>
</div>
</body>
<script src="js/index.js" defer></script>
</html>