-
Notifications
You must be signed in to change notification settings - Fork 0
/
BookCategory.html
176 lines (148 loc) · 5.81 KB
/
BookCategory.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Books Category</title>
<link rel="shortcut icon" type="image/jpg" href="favicon.svg"/>
<link href="BookCategory.css" rel="stylesheet">
<script src="BookCategory.js"></script>
<!-- <link rel="stylesheet" type="text/css" href="https://gitcdn.xyz/repo/pi0/clippyjs/master/assets/clippy.css"> -->
</head>
<body class="Main" style="margin:0px;padding:0px;">
<div class="NavigationBar">
<!-- Navigation Bar -->
<p style="padding-left: 5%;">
<a href="index.html">
Home
</a>
</p>
<p style="padding-left: 4%;">
<a href="contact.html">
About
</a>
</p>
<p style="padding-left: 4%;">
<a href="index.html#Share">
Share
</a>
</p>
<p style="padding-left: 4%;">
<a href="Payment.html">
Donate
</a>
</p>
<!-- <img style="position:absolute;right: 5%" src="images/Search.svg" alt="Search"> -->
<input id="Search" list="SearchDatabase" type="search" class="Search" onkeyup="Search()" placeholder="Search...." />
</div>
<datalist id="SearchDatabase">
<option value="ML"></option>
<option value="Java"></option>
<option value="Python"></option>
<option value="Deep Learning"></option>
<option value="Algorithms"></option>
<option value="Web"></option>
<option value="JavaScript"></option>
<option value="Data Structures"></option>
<option value="R"></option>
<option value="Data Science"></option>
</datalist>
<input type="image" onclick="goBack()" class="BackButton" src="images/Back.svg" alt="back">
<img class="Cover" id="Cover" src="images/Cover/cover1.jpg" alt="cover">
<h1 id="CoverText" class="CoverText">Computer Science</h1>
<br>
<br>
<br>
<br>
<div class="honeycomb">
<div class="ibws-fix">
<a class="hexagon" id="ML & AI" href="BookCategory.html?category=ML %26 AI">
<div class="hexagontent"> AI & ML</div>
</a>
<a class="hexagon" id="Data Science" href="BookCategory.html?category=Data Science">
<div class="hexagontent">Data Science</div>
</a>
<a class="hexagon" id="Languages" href="BookCategory.html?category=Languages">
<div class="hexagontent">Languages</div>
</a>
<a class="hexagon" id="Data Structures and Algorithms" href="BookCategory.html?category=Data Structures and Algorithms">
<div class="hexagontent">Algorithms</div>
</a>
<a class="hexagon" id="Web" href="BookCategory.html?category=Web">
<div class="hexagontent">Web Dev</div>
</a>
<a class="hexagon ClearFilter" href="BookCategory.html">
<div class="hexagontent">Clear Filter</div>
</a>
</div>
</div>
<!--
<table class="BooksTable" id="BooksTable">
<tr>
<td>
<div class="BookImageDiv">
<a href="BookDescription.html?bookId=1">
<img class="BookImage" src="
Assets/ML & AI/DEEP LEARNING with Python/deep learning.jpg" alt="Book Image">
</a>
</div>
</td>
<td>
<div class="BookImageDiv">
<a href="Machine learning for Absolute beginners.html">
<img class="BookImage" src="
Assets/ML & AI/Machine learning for Absolute beginners/mlintro.jpg" alt="Book Image">
</a>
</div>
</td>
<td>
<div class="BookImageDiv">
<a href="Machine Learning Make Your Own Recommender System.html">
<img class="BookImage" src="
Assets/ML & AI/Machine Learning Make Your Own Recommender System/RecSys.jpg" alt="Book Image">
</a>
</div>
</td>
</tr>
<tr>
<td>
<div class="BookImageDiv">
<a href="Machine Learning Using Python.html">
<img class="BookImage" src="
Assets/ML & AI/Machine Learning Using Python/MLPy.jpg" alt="Book Image">
</a>
</div>
</td>
<td>
<div class="BookImageDiv">
<a href="The Hundred-Page Machine Learning Book.html">
<img class="BookImage" src="
Assets/ML & AI/The Hundred-Page Machine Learning Book/HPMLB.jpg" alt="Book Image">
</a>
</div>
</td>
</tr>
</table>
-->
<div class="CharacterDescription">
<p id="CharacterDescriptionText" class="CharacterDescriptionText">Get all the Computer Science books you need.
We are constantly adding new books.
</p>
<img onclick="CharacterDescription()" class="CharacterDescriptionImage" src="images/CharacterDescription.png" alt="CharacterDescription">
</div>
<div class="BooksGrid" id="BooksGrid">
</div>
<br><br><br><br><br><br><br><br><br><br>
</body>
<!--
<script src="https://unpkg.com/[email protected]"></script>
<script src="https://unpkg.com/clippyjs@latest"></script>
<script type="text/javascript">
clippy.load('Genie', function(agent){
// Do anything with the loaded agent
agent.show();
agent.speak('Search all the Computer Science Books you need, We are constantly adding books.');
});
</script> -->
</html>