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

  • @0xabdul

    Posted

    Nice man good job ✨

    0
  • grgrnkoo 300

    @grgrnkoo

    Submitted

    What are you most proud of, and what would you do differently next time?

    Open it! It has animations!

    My 22/22 of free HTML/CSS challenges here. This project how my skills grew, completing each of these challenges. Glad to have it done and feeling confident to start learning JS. Hope to come back for another batch of JS challenges in a month or two

    @0xabdul

    Posted

    grgrnkoo your chat app css illustration animations is very amazing ✨

    1
  • stautuan 140

    @stautuan

    Submitted

    What are you most proud of, and what would you do differently next time?

    My first JavaScript project! I am extremely proud of completing this project. There were many challenges in this one, such as naming classes and variables, getting the tip buttons and custom tip to work the way I wanted them to.. In the end, this simple statement made my entire logic work:

    let selectedTip = 0;
    

    While there's room for improvement in my code, the sheer satisfaction of seeing it work brings me so much joy and relief. This was a fun one. Feedback is also welcomed! 😁

    @0xabdul

    Posted

    @stautuan your tip calculator is very super and responsive also ✨

    0
  • @almamarie

    Submitted

    What are you most proud of, and what would you do differently next time?

    • none

    What challenges did you encounter, and how did you overcome them?

    • Many of the fields were missing in some countries data e.g, some countries did not have borders, capital, currencies, etc. This caused errors when running the application. I had to randomly click on countries to try and fce the errors so I know where to model the application to catch those errors.

    • The Documentation on the rest-countries API website does not contain much information. Response objects and fields are not explained

    What specific areas of your project would you like help with?

    • I would love to know how to add dark mode theme to the application when using :root in my css modules.

    @0xabdul

    Posted

    Your projects is so nice 👍

    0
  • @0xabdul

    Posted

    thank you rajab marza ✨

    And your Projects also very nice

    0
  • @Gustakitos

    Submitted

    I've been await from html, css and javascript for a while so basic stuff like importing the fonts took me some time to remember, also i forgot the best practices for the selectors and i feel like there was a better way to solve this.

    @0xabdul

    Posted

    Hi Luis Gustavo well congratulation completing on qr code component

    I noticed that the qr code component is currently not center-aligned. Center-aligning this component could provide a more balanced and visually pleasing layout, making it easier for users to focus on the content without any distractions.

    which can greatly improve the overall look and feel of the interface. Users are naturally drawn to centered content, as it helps maintain a consistent visual hierarchy and enhances readability. i give solution for center aligning the component

    Solution ✅

    In Css 🎨 :

    body{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
    }
    

    I Hope its usefull for you ! ✨

    Marked as helpful

    1
  • @0xabdul

    Posted

    Hi Zsuzsa Lukacs well congratulation completing on result summary component

    I noticed that the result summary card component is currently not center-aligned. Center-aligning this component could provide a more balanced and visually pleasing layout, making it easier for users to focus on the content without any distractions.

    which can greatly improve the overall look and feel of the interface. Users are naturally drawn to centered content, as it helps maintain a consistent visual hierarchy and enhances readability. i give solution for center aligning the component

    Solution ✅

    In Css 🎨 :

    body{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
    }
    

    I Hope its usefull for you ! ✨

    0
  • @0xabdul

    Posted

    Hi JorgGou well congratulations on completing the NFT preview card component

    • A Few Feedback for improve your code and clear the Accessibility issue

    IN HTML 📂 :

    L A N D M A R K 🛠️

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully one level heading📚 Click here

    I Hope it's useful comment for you and Happy Coding Developer 😊

    1
  • @0xabdul

    Posted

    Hi Benjamin B. you finished the Stats preview card component in this project is Awesome but some Accessibility issue A Few recommendation for improve your code and clear the Accessibility issue

    IN HTML 📃 :

    L A N D M A R K 🔺

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully one level heading📚 Click here

    I Hope it's useful comment for you and Happy Coding😊

    0
  • @0xabdul

    Posted

    Hi Cletus Samuel front end mentor member well congratulations on completing the Insure landing page

    • A Little bit suggestions for improve your code and clear the all Accessibility issue

    IN HTML 📂 :

    HEADING ⚠️

    • the heading level increase by one
    • the html documents must be contained level of headings 🚀

    We Do ✓

    Ex :

    <h1> </h1>
    <h2> </h2>
    <h3> </h3>
    <h4> </h4>
    
    • We use the headings line by line or sequence

    Don't Do !

    Ex :

    <h2> </h2>
    <h3> </h3>
    <h4> </h4>
    <h3> </h3>
    

    LIST🖇️

    • the <li> tag must be included in the <ul> or <ol>

    We Do🙇

    Ex :

    <ul>
        <li> </li>
        <li> </li>
        <li> </li>
    </ul>
    (Or)
    <ol>
        <li> </li>
        <li> </li>
        <li> </li>
    </ol>
    

    Don do 🙅

    Ex :

        <li> </li>
        <li> </li>
        <li> </li>
        <li> </li>
        <li> </li>
    
    • Now we learn about how to use the Order list and unordered list and solve the problem ✓

    I Hope it's useful comment for you and Happy Coding 😊

    0
  • @0xabdul

    Posted

    Hi pedro well congratulations on completing the Product preview card component

    • A Little bit suggestions for improve your code and clear the Accessibility issue

    IN HTML 📂 :

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully about one level heading📚 Click here

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful for you and Happy Coding 🤩

    Marked as helpful

    0
  • @0xabdul

    Posted

    Hello jakubochmanek well congratulations on completing the QR code component

    • A Some suggestions for improve your code and clear the Accessibility issue

    IN HTML 📃 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful for you and Happy Coding 🤩

    0
  • @Saif-Mohammed1

    Submitted

    Hello there I build this website using react,styled-component, CSS grid,flex-box

    if there is any suggestion to optimize this code I will be grateful for any notes

    Manage landing page using react

    #jss#react#styled-components

    1

    @0xabdul

    Posted

    Hi Saif Mohammed well congratulations on completing the Manage landing page

    • A Few Feedback for improve your code and clear the all Accessibility reports

    IN HTML 📃 :

    L I N K S 🖇️

    • link must have text format and link used in proper way Ex :

    We use :

    <a href="taxhike.html" 
    aria-label="Read more 
    about Seminole tax hike">
    [Read more...]</a>
    
    • Don't skip that !

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful for you and Happy Coding 🤩

    0
  • @0xabdul

    Posted

    Hi ABNmmd | dev | well congratulations on completing the NFT preview card component 🤩 some suggestions for improve your code and clear the Accessibility reports

    IN HTML 📂 :

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully about one level heading📚 Click here

    I Hope it's useful comment for you and Happy Coding 🤩

    Marked as helpful

    1
  • @0xabdul

    Posted

    Hello Salami Matthew well congratulations on completing the Results summary component you doing very well but some Accessibility reports occurred when ? Landmarks

    • A Some suggestions for improve your code and clear the issue

    IN HTML 📂 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    IN CSS 🎨 :

    • Your results summary component is not center aligning it shows top of the Web page 📃

    Example :

    body {
    display:grid;
    place-items:center;
    margin:0;
    height:100vh;
    }
    

    🔻Happy Coding 😊🔺

    Marked as helpful

    0
  • @0xabdul

    Posted

    Hi Sholafunmi Adewara | dev | we'll congratulations on completing the NFT preview card component you doing very well 🤩 , but some Accessibility reports occurred when ? Landmarks !

    • A Few line Feedback for improve your code and clear the issue

    IN HTML 📃 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully one level heading📚 Click here

    I Hope it's useful comment for you and Happy Coding 🤩

    Marked as helpful

    0
  • @0xabdul

    Posted

    Hi Md Sahebuddin Ansari | Dev | well congratulations on completing the Testimonials grid section you doing very well but some Accessibility reports occurred when ? Landmarks

    • A Little bit suggestions for improve your code and clear the issue

    IN HTML 📃 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully one level heading📚 Click here

    IN CSS 🎨 :

    • your Testimonials grid section is not center aligning it shows right of the Web page 📄 so fix that issue

    Good Example :

    body {
    display:grid;
    place-items: center;
    margin:0;
    Height:100vh;
    }
    
    • Now center aligning 🎯

    I Hope it's useful comment for you and Happy Coding 😊

    0
  • @0xabdul

    Posted

    Hi Ashni Croospulle Developer well congratulations on completing the Rock, Paper, Scissors game , you doing very well But some Accessibility reports occurred why ? Because landmarks !

    Solution 📌

    IN HTML 📃 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful for you and Happy Coding 🤩

    0
  • @felipetn1989

    Submitted

    For this project, I used a display:flex on the html element in the CSS stylesheet, so that the site wouldn't break when stretching across multiple monitors for example. Feedback is welcome!

    Easybank landing page

    #tailwind-css

    1

    @0xabdul

    Posted

    Hi Felipe Thomé | Dev | we'll congratulations on completing the Easybank landing page in this project is Awesome 👍 but one Accessibility reports occurred when? Landmarks ✅

    Solution 📌

    IN HTML 📂 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful comment for you and Happy Coding 😊

    Marked as helpful

    1
  • daniel 80

    @retailescapeartist

    Submitted

    I was unsure about how to size the items better. I got around most of it, but it was messy. I'm sure I'll get better with time

    @0xabdul

    Posted

    Hi daniel | Dev | we'll congratulations on completing the QR code component this project you doing very well but some Accessibility reports occurred A Few Feedback for improve your code and clear the issue

    Solution 📌

    IN HTML 📂 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully one level heading📚 Click here

    IN CSS 🎨 :

    Your QR card is not center aligning it shows top of the Web page 📃 so fix that

    Example :

    body {
    display:grid;
    place-items:center;
    margin:0;
    height:100vh;
    }
    

    I Hope it's useful for you and Happy Coding 🤩

    0
  • @0xabdul

    Posted

    Hi Salami Matthew | Developer | we'll congratulations on completing the NFT preview card component In This project doing very well 😊 but some Accessibility reports occurred

    Solution 📌

    IN HTML 📂 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    IN CSS 🎨 :

    • your NFt card is not center aligning it shows top of the Web page 📄 so fix that

    • Example :

    body {
    display:grid;
    place-items:center;
    margin:0;
    height:100vh;
    }
    

    I Hope it's useful comment for you and Happy Coding 😊

    0
  • @0xabdul

    Posted

    Hi Salami Matthew | Dev | we'll congratulations on completing the Social proof section A Some suggestions for improve your code 📝

    IN HTML 📂 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful comment for you and Happy Coding | Dev |😊

    Marked as helpful

    0
  • @0xabdul

    Posted

    Hi Felipe Leite | Dev | well congratulations on Completing the NFT preview card component A Few Feedback for improve your code

    IN HTML 📂 :

    I M A G E S 📸

    • whenever using the img tag put the alt attribute
    • Ensure all informative <img> elements have short, descriptive alternate text and all decorative <img> elements have empty alt attributes (e.g. alt="").
    • There are three main ways to add alternate text to an image: Using an alt attribute i.e. <img alt="drawing of a cat" src="..."> Using an aria-label i.e. <img aria-label="drawing of a cat" src="..."> Using an aria-labelledby attribute i.e. <img arialabelledby="someID" src="...">

    Or

    • Alt Must be included in IMG TAG
    <img src="icon.png" alt="icon"></img>
    

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    HEADINGS ⚙️

    • The page must contain at least one h1 element identifying and describing the main content of the page. An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page so reason Accessibility reports occurred Ex : <h1> must </h1> I Recommend you Know fully one level heading📚 Click here

    I Hope it's useful comment for you and Happy Coding Developer 😊

    Marked as helpful

    0
  • @0xabdul

    Posted

    Hi Patosinsuerte we'll congratulations on completing the Advice generator app it's so nice 🙂 but some Accessibility reports occurred A Few Feedback for improve your code and clear the issue

    IN HTML 📂 :

    L A N D M A R K 🚀

    • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.
    • To Clear the Accessibility reports use the Semantic elements Or non - Semantic elements
    • Note This Elements are don't sikp
    • semantic elements : <aside> , <artical> , <main>, <header> ,<section><footer>, <form> ect..
    • non- semantic elements : <div> , <span> ect ...
    • for easy way to clear the Accessibility reports using non semantic elements Ex :
    <body>
    <div class="container" role="main">
    // All html code goes here : 📃
    </div>
    </body>
    
    • Or
    • using semantic elements
    • Ex :
    <header>
    should be put heading or logo📸
    </header>
    <nav>
    //Links here
    </nav>
    <main>
    Main of the contents 📃
    </main>
    <footer>
    ©copy right  here📍
    </footer>
    

    I Hope it's useful comment for you and Happy Coding 🤩

    Marked as helpful

    0