-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #893 from Nih1tGupta/main
IMPROVED CSS FOR CARDS
- Loading branch information
Showing
2 changed files
with
33 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
|
||
</head> | ||
|
||
<body data-bs-spy="scroll" data-bs-target=".navbar" data-bs-offset="100"> | ||
<body data-bs-spy="scroll" data-bs-target=".navbar" data-bs-offset="100" onload="blinker();"> | ||
<!-- header design section --> | ||
<nav> | ||
<div class="navigbar"> | ||
|
@@ -80,7 +80,7 @@ | |
<div class="row"> | ||
<div class="col-sm-12"> | ||
<div class="text-content text-center"> | ||
<h2>Exclusive Offers</h2> | ||
<h2 id="blink">Exclusive Offers</h2> | ||
<p>Discover a world of flavors with our diverse culinary offerings. From savory dishes crafted with fresh, | ||
local ingredients to indulgent desserts that delight the senses, each bite tells a story. Savor the | ||
fusion of traditional recipes and innovative twists, bringing global tastes to your table. Taste the | ||
|
@@ -93,9 +93,9 @@ <h2>Exclusive Offers</h2> | |
|
||
<div class="col-lg-4 col-md-6 mb-lg-0 mb-5"> | ||
<div class="card border"> | ||
<img decoding="async" src="/Html-files/assets/discount.jpg" class="img-fluid"> | ||
<img decoding="async" src="https://img.freepik.com/premium-vector/special-offer-delicious-food-menu-sale-discount-with-landscape-social-media-post-tempate-banner-with-copy-space-3d-podium-food-sale-with-abstract-gradient-orange-white-background-design_727967-1725.jpg" class="img-fluid"> | ||
<div class="p-3"> | ||
<h5>🎉 Grab your savings now with our unbeatable new discounts! 💸</h5> | ||
<h5>🎉 Grab your savings now with our unbeatable new discounts every week! 💸</h5> | ||
<p>Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save | ||
big on every purchase! 🛍️</p> | ||
<button class="mt-2 main-btn">Read More</button> | ||
|
@@ -105,7 +105,7 @@ <h5>🎉 Grab your savings now with our unbeatable new discounts! 💸</h5> | |
|
||
<div class="col-lg-4 col-md-6 mb-lg-0 mb-5"> | ||
<div class="card border"> | ||
<img decoding="async" src="/Html-files/assets/collaboration.jpg" class="img-fluid"> | ||
<img decoding="async" src="https://img.freepik.com/premium-photo/young-people-social-media-like-concept-flat-vector-illustration-daily-activities-working-ai-generated_705708-26385.jpg" class="img-fluid"> | ||
<div class="p-3"> | ||
<h5>🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟 </h5> | ||
<p>Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy | ||
|
@@ -263,6 +263,15 @@ <h4>Follow Us</h4> | |
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script> | ||
<!-- own js --> | ||
<script> function blinker() | ||
{ | ||
if(document.getElementById("blink")) | ||
{ | ||
var d = document.getElementById("blink") ; | ||
d.style.color= (d.style.color=='yellow'?'white':'yellow'); | ||
setTimeout('blinker()', 900); | ||
} | ||
}</script> | ||
<script> | ||
function redirectLogin() { | ||
window.location.href = "/login.html"; | ||
|