-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
45 lines (37 loc) · 1.42 KB
/
card.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>BookFinder - jM webDev</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Goudy+Bookletter+1911|Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="style.css">
<link rel="stylesheet" type="text/css" media="screen" href="card.css">
</head>
<body>
<nav>
<h1>BookFinder |</h1>
<h2>my shelf</h2>
</nav>
<section id='search_card'>
<input type="text" id="search_box" placeholder="title |or| author">
<input type="submit" id="submit" value="discover">
</section>
<section id='result_shelf'>
<div class="book">
<a href="link">
<img class="image"
src="https://books.google.com/books?id=zyTCAlFPjgYC&printsec=frontcover&img=1&zoom=2&edge=curl&source=gbs_api">
</a>
<p class='fav'>ADD TO SHELF</p>
<p class='title'>Title:</p>
<p class='author'>Author:</p>
<p class='publisher'>Publisher:</p>
</div>
</section>
<!-- <script src="script.js"></codescript> -->
</body>
</html>