-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
55 lines (55 loc) · 2.62 KB
/
books.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Books</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="books.css">
</head>
<body>
<a href="index.html" class="back btn btn-secondary">Go back to Dashboard</a>
<div class="container bcontent">
<h1>BOOKS</h1>
<hr />
<div class="card book">
<div class="row">
<div class="col-sm-5 no-gutters">
<img class="card-img" src="https://images-na.ssl-images-amazon.com/images/I/71gJH+6F-PL.jpg" alt="">
</div>
<div class="col-sm-7">
<div class="card-body">
<h5 class="card-title">Engineering Mechanics</h5>
<h6 class="card-title">~ N. H. Dubey</h6>
<p class="card-text">Class - B.Tech 1st year</p>
<p class="card-text">Published in 2015</p>
<a href="https://drive.google.com/file/d/1yx1OjynJjNHnRmnaFuDXqb-Q8uuVLS3L/view?usp=sharing" class="btn btn-primary">Download</a>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="container bcontent">
<div class="card book" style="padding-bottom: 0; padding-top: 0;">
<div class="row no-gutters">
<div class="col-sm-5">
<img class="card-img" src="https://www.engineerrefe.com/wp-content/uploads/2019/01/Capture-40.png" alt="">
</div>
<div class="col-sm-7">
<div class="card-body">
<h5 class="card-title">Basic Electrical Engineering</h5>
<h6 class="card-title">~ C. L. Wadhwa</h6>
<p class="card-text">Class - B.Tech 1st year</p>
<p class="card-text">Fourth Edition</p>
<a href="https://drive.google.com/file/d/1V4bpECkJqZzmy1BbuHDRm1OIr8rsCIw4/view?usp=sharing" class="btn btn-primary">Download</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>