-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcat.html
More file actions
124 lines (120 loc) · 4.59 KB
/
Copy pathcat.html
File metadata and controls
124 lines (120 loc) · 4.59 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catalogue Page</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen:wght@700&display=swap');
</style>
</head>
<style>
body {
background-image: url("./A6.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.header {
font-family: 'Qwitcher Grypen', cursive;
font-size: 60px;
text-align: center;
}
.hack {
background: rgb(148, 199, 201);
}
.btn {
width: 100%;
height: 45px;
background: #8e8896;
border: none;
outline: none;
border-radius: 14px;
cursor: pointer;
font-size: 16px;
color: white;
font-weight: 500;
box-shadow: 0 0 10px rgba(0, 0, 0, .5);
color: white;
}
</style>
<body>
<div class="header">
<p><u>List of Books Currently Available in our Library</u></p>
</div>
<br>
<br>
<div class="hack">
<table border="10px">
<tr>
<th>  DATA STRUCTURES AND ALGORIHMS  </th>
<th>  ARTIFICIAL INTELLIGENCE  </th>
<th>  DEEP LEARNING  </th>
<th>  MACHINE LEARNING  </th>
<th>  WEB DEVELOPMENT  </th>
<th>  BUSINESS INTELLIGENCE  </th>
</tr>
<tr>
<td>
<ol>
<li>Introduction to Algorithms</li>
<li>Data Structures and Algorithms Made Easy</li>
<li>Algorithms</li>
<li>Grokking Algorithms</li>
<li>The Algorithm Design Manual</li>
</ol>
</td>
<td>
<ol>
<li>Artificial Intelligence For Dummies</li>
<li>Artificial Intelligence Basics</li>
<li>Python: Beginner's Guide to AI</li>
<li>Life 3.0 Being Human in the Age of AI”</li>
<li>Artificial Intelligence in Healthcare</li>
</ol>
</td>
<td>
<ol>
<li>Grokking Deep Reinforcement Learning</li>
<li>Deep Learning for Vision Systems</li>
<li>Deep Learning in Computer Vision</li>
<li>Deep Learning with Python</li>
<li>Fundamentals of Deep Learning</li>
</ol>
</td>
<td>
<ol>
<li>The Hundred-Page Machine Learning Book</li>
<li>Machine Learning for Dummies</li>
<li>Best Machine Learning Books with Python Experience</li>
<li>Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow</li>
<li>Best Machine Learning Books for More Indepth Theorey</li>
</ol>
</td>
<td>
<ol>
<li>HTML and CSS: Design and Build Websites</li>
<li>JavaScript and jQuery</li>
<li>Eloquent JavaScript</li>
<li>JavaScript: The Definitive Guide</li>
<li>Learning PHP, MySQL & JavaScript</li>
</ol>
</td>
<td>
<ol>
<li>Data Strategy</li>
<li>Big Data MBA</li>
<li>The Data Detective</li>
<li>From Big Data to Big Profits</li>
<li>Effective Data Storytelling</li>
</ol>
</td>
</tr>
</table>
</div>
<br><br>
<div>
<button type="submit" class="btn"><a href="pay.html">Buy Premium To Read Books</a></button>
</div><br><br>
</body>
</html>