Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Tomek• 240

    @qntek

    Posted

    Hi there. Well I think that You should start learning html / css first before using bootstrap.

    Also try to apply some media query to that project so it could display on mobile devices as well.

    Good luck.

    0
  • Martin• 40

    @MCoton

    Submitted

    Most difficult, reviving my very rusty JS. It could definitely be cleaner, any (constructive) feedback on my JS is welcome.

    Still unsure of Aria but that's a work of in progress. I doubt my (out of scope) alert to pick a value will be very accessible, advice on how to handle this better would be good.

    EDIT: Have applied the suggestions from the comments section. An updated version has now been pushed to GitHub.

    Tomek• 240

    @qntek

    Posted

    Hi there. Well, You could add underneath that window hidden paragraph with css value visibility = 'hidden'; It's content could be a message to pick one of those buttons. So:

    if (!value) { paragraph.style.visibility = 'visible'; } else display thankyou window.

    Marked as helpful

    0
  • Om Jha• 20

    @blzee-maker

    Submitted

    1. How can make a site be more Responsive to multiple devices? what is a must to know for Responsive sites?

    2. I think the code I have provided is a little complex. what can be a much simpler option that satisfies all the required needs?

    3. What else can be done to cross the perfume's MRP value(169.99)? Aside from using the hr tag.

    Tomek• 240

    @qntek

    Posted

    To make your page more responsive for all devices read about media queries: https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries

    To style your page, good practice is to have separate file for css styling with you can import in head tag section, for example: <link rel="stylesheet" href="./papth-to-your-css-file.css">

    To corss the perfume's value You shall use: text-decoration: line-through;

    Marked as helpful

    0