-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisit.htm
100 lines (88 loc) · 3.88 KB
/
visit.htm
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel = "stylesheet" href="css/style.css">
<!-- Bootstrap CSS CDN-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<title>Books Collection</title>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="index.html">
<img src="Image\Logo.png" width="140" height="80" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.htm">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="ABOUT.html">About </a>
</li>
<li class="nav-item">
<a class="nav-link" href="CONTACT.HTML">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link " href="search.html">Search Books</a>
</li>
</ul>
</div>
</nav>
<br>
<br><br>
<br>
<img src="Image\book-1052014_1280.jpg" height="500px" class="d-block w-100" alt="Image 1"><br>
<h3 style="color:green;" class="heading_1">The Book Collection of library is as follows.</h3>
<br>
<div class="container heading_1 card">
<table class="table">
<thead>
<tr>
<th>S.No</th>
<th>Name</th>
<th>Subject</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><a href="https://www.pdfdrive.com/introduction-to-c-and-c-programming-e4331665.html">Introduction to C++ (and C) Programming</a></td>
<td>Programming</td>
</tr>
<tr>
<td>2</td>
<td><a href="https://www.pdfdrive.com/learn-c-in-one-day-and-learn-it-well-c-for-beginners-with-hands-on-project-e194606364.html">Learn C# in One Day and Learn It Well: C# for Beginners with Hands-on Project</a></td>
<td>Programming</td>
</tr>
<tr>
<td>3</td>
<td><a href="https://www.pdfdrive.com/learn-to-program-with-c-learn-to-program-using-the-popular-c-programming-language-e166650744.html">Learn to Program with C: Learn to Program using the Popular C Programming Language</a></td>
<td>Programming</td>
</tr>
<tr>
<td>4</td>
<td><a href="https://www.pdfdrive.com/principles-of-data-structures-using-c-and-c-e19847224.html">Principles of Data Structures Using C and C++</a></td>
<td>Data Structures</td>
</tr>
<tr>
<td>5</td>
<td><a href="https://www.pdfdrive.com/introduction-to-programming-using-python-e38332810.html">Introduction to Programming Using Python</a></td>
<td>Programming</td>
</tr>
<tr>
<td>6</td>
<td><a href="https://www.pdfdrive.com/horowitz-and-sahani-fundamentals-of-computer-algorithms-2nd-edition-e18723362.html">Fundamentals of Computer Algorithms, 2ND Edition</a></td>
<td>Algorithms</td>
</tr>
</tbody>
</table>
</div>
</body></html>