Skip to content
🤔prompts chat🧠
🔍
question:something which i can write in my vlog starting that we are going to dha exhibation

answer:"Hey everyone, welcome back to my channel! Today is going to be a super exciting day because we are heading to the much-anticipated exhibition at DHA (Defence Housing Authority). I cannot wait to explore different art installations, innovative designs, and unique exhibits. It's going to be a visual feast for sure! So, grab your snacks and join me on this adventure as we dive into the world of creativity and imagination. Let's go!"

question:I have this code <section class="pricing"> <div class="pricing-container"> <div class="pricing-column column-1"> <h2>Standard</h2> <p class="text2 price">&dollar;69</p> <p class="pricing-info text2">Billed monthly. Cancel anytime.</p> <p class="pricing-description">Great for personal accounts, businesses and upcoming influencers looking for organic growth.</p> <a class="btn btn--primary type--uppercase pricing-cta text2" href="https://app.upleap.com/register?plan=standard-usd-monthly"> <span class="btn__text"> 10-day Free Trial </span> </a> <ul style="list-style-image: url(img/checkmark.html)" class="check-features"> <li><b>400+ Instagram Followers</b></li> <li>Follow/Unfollow Automation</li> <li>Real & Organic Growth</li> <li>Target by Account</li> <li>Target by Hashtag</li> <li>Suggested Targets by Industry</li> <li>Whitelist & Blacklist</li> <li>Auto-Whitelist</li> <li>Like after Follow</li> </ul> <ul style="list-style-image: url(img/exmark.html)" class="ex-features"> <li>Dedicated Account Manager</li> <li>Welcome DM Automation</li> <li>Story Liker & Viewer</li> <li>Filter by Gender</li> <li>Filter by Location</li> </ul> </div> <div class="pricing-column column-2"> <p class="most-popular-tag">Most popular</p> <h2>Pro</h2> <p class="text2 price">&dollar;119</p> <p class="pricing-info text2">Billed monthly. Cancel anytime.</p> <p class="pricing-description">Level up your Instagram game with advanced features and a <b>Dedicated Account Manager</b>.</p> <a class="btn btn--primary type--uppercase pricing-cta text2" href="https://app.upleap.com/register?plan=pro-usd-monthly"> <span class="btn__text"> 10-day Free Trial </span> </a> <ul style="list-style-image: url(img/checkmark.html)" class="check-features"> <li><b>1,000+ Instagram Followers</b></li> <li>Follow/Unfollow Automation</li> <li>Real & Organic Growth</li> <li>Target by Account</li> <li>Target by Hashtag</li> <li>Suggested Targets by Industry</li> <li>Whitelist & Blacklist</li> <li>Auto-Whitelist</li> <li>Like after Follow</li> <li>Dedicated Account Manager</li> <li>Welcome DM Automation</li> <li>Story Liker & Viewer</li> <li>Filter by Gender</li> <li>Filter by Location</li> </ul> </div> <div class="pricing-column column-3"> <h2>Premium</h2> <p class="text2 price">&dollar;239</p> <p class="pricing-info text2">Billed monthly. Cancel anytime.</p> <p class="pricing-description">Supercharge your growth with Follower Bursts. Get everything from the Pro Plan + even more exposure!</p> <a class="btn btn--primary type--uppercase pricing-cta text2" href="https://app.upleap.com/register?plan=premium-usd-monthly"> <span class="btn__text"> 10-day Free Trial </span> </a> <ul style="list-style-image: url(img/checkmark.html)" class="check-features"> <li><b>2,500+ Instagram Followers</b></li> <li>Follow/Unfollow Automation</li> <li>Real & Organic Growth</li> <li>Target by Account</li> <li>Target by Hashtag</li> <li>Suggested Targets by Industry</li> <li>Whitelist & Blacklist</li> <li>Auto-Whitelist</li> <li>Like after Follow</li> <li>Dedicated Account Manager</li> <li>Welcome DM Automation</li> <li>Story Liker & Viewer</li> <li>Filter by Gender</li> <li>Filter by Location</li> </ul> </div> </div> </section> And this CSS: @media screen and (max-width: 1024px) { .pricing-container { display: flex !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important; } .pricing-column { flex: 1 0 100% !important; min-width: 300px !important; scroll-snap-align: start !important; } On mobile the user can swipe left and right the various pricing which is a feature I love. However currently you can't see that there are other pricing options unless you swipe. So my question was, is it possible to still show just the corners/border of the pricing-colum next to the one you're currently watching? So end result, on mobile would be, you see mainly one pricing option + the border/corners of the pring option next to it, so the user knows that he has to swipe.

answer:Yes, it is possible to show just the corners/border of the pricing-column next to the one you're currently viewing on mobile. You can achieve this by modifying the CSS code as follows: @media screen and (max-width: 1024px) { .pricing-container { display: flex !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important; } .pricing-column { position: relative; /* Add this line */ flex: 1 0 100% !important; min-width: 300px !important; scroll-snap-align: start !important; border: solid 1px transparent; /* Add this line */ border-radius: 10px; /* Add this line */ } .pricing-column::before { /* Add this block */ content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: solid 1px #000; /* Replace #000 with the desired border color */ border-radius: 10px; /* Match the border-radius of .pricing-column */ z-index: -1; } } This code adds a transparent border to each pricing-column and places a before pseudo-element behind it with a visible border. The before pseudo-element acts as a border overlay for each pricing-column, showing just the corners/border of the neighboring pricing-column. By swiping left or right, the user can see the entire pricing-column.

question:what were Leo Le Boutillier & Thomas-Louis Tremblay war experiance

answer:There is limited information available about specific individuals named Leo Le Boutillier and Thomas-Louis Tremblay. However, if they were involved in any significant war experiences, such as serving in the military during a war or participating in any notable battles, that information may not be readily accessible. It is necessary to have more specific details or context in order to provide a more accurate answer.

question:how was Leo Le Boutillier & Thomas-Louis Tremblay battle experience different from others

answer:Without specific information about Leo Le Boutillier and Thomas-Louis Tremblay, it is challenging to determine their individual battle experiences and how they might differ from others. Factors that could affect their experiences include which war they were involved in, their roles within the military, and the specific battles or campaigns they participated in. Additionally, personal factors such as their training, skills, and personal characteristics could also contribute to any variations in their battle experiences. Without more specific details, it is difficult to provide a comprehensive answer.

Released under the MIT License.

has loaded