Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

price issue fixed with correct discount #213

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ <h2>Exclusive Deals and Offers</h2>
<h3>Flight to Dubai</h3>
<p>Save 20% on round-trip flights to Dubai. Limited time offer!</p>
<p>
<strong>Price:</strong> ₹25,000
<span class="discount">₹20,000</span>
<strong>Price:</strong> ₹20,000
<span class="discount">₹25,000 </span>
</p>
<button onclick="window.location.href='#book-now'">Book Now</button>
</div>
Expand All @@ -239,8 +239,8 @@ <h3>Luxury Stay in Goa</h3>
luxury at an affordable price!
</p>
<p>
<strong>Price:</strong> ₹15,000
<span class="discount">₹10,500</span> per night
<strong>Price:</strong> ₹10,500
<span class="discount"> ₹15,000</span> per night
</p>
<button onclick="window.location.href='#book-now'">Book Now</button>
</div>
Expand All @@ -253,8 +253,8 @@ <h3>Kerala Backwaters Package</h3>
3-night package. All-inclusive deal!
</p>
<p>
<strong>Price:</strong> ₹50,000
<span class="discount">₹40,000</span>
<strong>Price:</strong> ₹40,000
<span class="discount">₹50,000</span>
</p>
<button onclick="window.location.href='#book-now'">Book Now</button>
</div>
Expand All @@ -267,8 +267,8 @@ <h3>Paris Romantic Getaway</h3>
package for couples!
</p>
<p>
<strong>Price:</strong> ₹1,50,000
<span class="discount">₹1,20,000</span> per couple
<strong>Price:</strong> ₹1,20,000
<span class="discount"> ₹1,50,000</span> per couple
</p>
<button onclick="window.location.href='#book-now'">Book Now</button>
</div>
Expand All @@ -281,8 +281,8 @@ <h3>Adventure in Bali</h3>
trekking, and more. Discount available for groups!
</p>
<p>
<strong>Price:</strong> ₹60,000
<span class="discount">₹48,000</span> per person
<strong>Price:</strong> ₹48,000
<span class="discount">₹60,000</span> per person
</p>
<button onclick="window.location.href='#book-now'">Book Now</button>
</div>
Expand Down
Loading