-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Discover</title>
<link rel="stylesheet" type="text/css" href="/static/css/grid.css">
<link rel="stylesheet" type="text/css" href="/static/css/style.css">
</head>
<body>
<div class="grid">
<div class="item">
<header>
<h1>Discover Portal</h1>
<p>Welcome to the book portal </p>
<p>There are millions of books to find !!</p>
</header>
</div>
<div class="item">
<main>
<form id="search" onsubmit="return false">
<input type="search" id="textName" name="portal" oninvalid="this.setCustomValidity('Please enter a title of a book etc.')"
oninput="setCustomValidity('')" required placeholder="search for books..." minlength="2">
<input type="submit" value="Search">
</form>
</main>
</div>
<div class="item">
<div id="results">
<img class="thumbnail">
</div>
</div>
<script src="/static/js/scripts.js"></script>
</body>
</html>