Skip to content

Commit

Permalink
FIXED the Icons Not Visible Problem of BLOGS Page
Browse files Browse the repository at this point in the history
  • Loading branch information
PatelHarsh2006 committed Nov 8, 2024
1 parent 37ee2a4 commit f55e3f6
Showing 1 changed file with 52 additions and 35 deletions.
87 changes: 52 additions & 35 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artic Delights Blog</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">

<style>
body {
font-family: Arial, sans-serif;
Expand Down Expand Up @@ -96,42 +98,57 @@ <h1 class="site-title">ArcticDelights</h1>
<a href="#" id="my-order-btn">My Orders</a>
</nav>

<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="slider"></div>
</label>
<span id="mode-label">Light Mode</span>
</div>
<div class="search-form">
<input type="search" id="search-box" placeholder="Search...">
<label for="search-box" class="fas fa-search"></label>
</div>
<div class="wishlist-container">
<ul id="wishlistItems"></ul>
<button class="clear-from-wishlist-btn" onclick="clearWishlist()">Clear Wishlist</button>
</div>
<div class="cart-items-container">
<div class="cart">
<ul id="cartItems">
<!-- Cart items will be displayed here -->
</ul>
<h3>
<div id="total">Total:$0.00
</div>
</h3>
<button id="checkout-button" onclick="checkout()">Checkout</button>
</div>
</div>
<div class="my-order-container">
<h2>My Order</h2>
<div id="order-details">
<!-- Order details will be displayed here -->
</div>
<div class="order-actions">
<button onclick="trackOrder()">Track Order</button>
<button onclick="editOrder()">Edit Order</button>

<div class="icons">
<div class = "fas fa-heart" id = "wishlist-btn"></div>
<div class="fas fa-search" id="search-btn"></div>
<a href="/cart.html">


<div class="fas fa-shopping-cart" id="cart-btn">

<span id="cart-count">(0)</span></div>
</a>
</div>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="slider"></div>
</label>
<span id="mode-label">Light Mode</span>
</div>
<div class="search-form">
<input type="search" id="search-box" placeholder="Search...">
<label for="search-box" class="fas fa-search"></label>
</div>
<div class="wishlist-container">
<ul id="wishlistItems"></ul>
<button class="clear-from-wishlist-btn" onclick="clearWishlist()">Clear Wishlist</button>
</div>
<!-- <div class="cart-items-container">
<div class="cart">
<ul id="cartItems">
Cart items will be displayed here
</ul>
<h3>
<div id="total">Total:$0.00
</div>
</h3>
</div>
</div> -->
<div class="my-order-container">
<h2>My Order</h2>
<div id="order-details">
<!-- Order details will be displayed here -->
</div>
<div class="order-actions">
<button onclick="trackOrder()">Track Order</button>
<button onclick="editOrder()">Edit Order</button>
</div>

</div>
<div class="icons login-signup-collection">


</div>
<div class="icons login-signup-collection">
Expand Down

0 comments on commit f55e3f6

Please sign in to comment.