diff --git a/E-Book.html b/E-Book.html
new file mode 100644
index 0000000..be1490b
--- /dev/null
+++ b/E-Book.html
@@ -0,0 +1,296 @@
+
+
+
+
+
+ E-Books
+
+
+
+
+
+
+
+ Our Books Collection
+
+
+
+
+
![Java Book](https://rukminim2.flixcart.com/image/850/1000/l51d30w0/book/p/n/o/java-programming-language-learn-java-from-basic-to-advance-2022-original-imagfsqsfcqzzrjj.jpeg?q=90&crop=false)
+
Learn Java
+
$15
+
+
+
+
![Python Book](https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1577622829i/50076664.jpg)
+
Learn Python
+
$12
+
+
+
+
![DSA Book](https://d24f1whwu8r3u4.cloudfront.net/assets/book-covers/dsa-460d6841c2af7be347922d3d151987862d14b7f12d6c5caba28df01dbb7da687.png)
+
DSA Mastery
+
$18
+
+
+
+
+
+
+
+
+
+
E-Book Details
+
This is a collection of our amazing e-books. Explore different topics and enhance your knowledge!
+
+
+
+
+
Your Cart
+
+
Total: $0
+
+
+
+
+
+
+
+
+
diff --git a/assets/css/style.css b/assets/css/style.css
index 0de17ff..95f9213 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -588,16 +588,31 @@ body.nav-active .navbar-list .navbar-link {
.feedback-button {
position: fixed;
left: 20px;
- bottom: 20px;
+ bottom: 20px; /* Position for the Feedback button */
background-color: hsl(357, 100%, 75%);
color: white;
padding: 15px;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- z-index: 1000;
+ z-index: 1000; /* Ensure it is on top */
}
+.E-book-button {
+ position: fixed;
+ left: 20px;
+ bottom: 80px; /* Adjusted to be above the Feedback button */
+ background-color: hsl(357, 100%, 75%);
+ color: white;
+ padding: 15px;
+ border-radius: 5px;
+ cursor: pointer;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
+ z-index: 1001; /* Higher z-index to ensure it appears above */
+}
+
+
+
.feedback-modal {
display: none;
position: fixed;
diff --git a/index.html b/index.html
index 5f3e7fe..77b7410 100644
--- a/index.html
+++ b/index.html
@@ -220,6 +220,8 @@