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

  • @andguyen1

    Submitted

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

    I am proud of the structuring, it's similar to the last one so not much needed to be done. Nonetheless, I got more practice of using this kind of structuring and playing around with the positioning.

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

    I had some issues with mobile implementation. I still have them, but I fixed my sizing issues using width: 100% and height: auto;. This had fixed the problem I faced for a while.

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

    I'd like help with how I can better structure this and/or where or how I should best be editing my sizing and etc.

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`m wishing for your completion in this project.

    • I will be see in your code
    • In the .attribution tag will be inside of the footer tag because this is end of the content so I will suggest to change the HTML following format<footer><div class="attribution"></div></footer>
    • In CSS You will use
    .blog-picture {
        margin: 7px;
    }
    
    • I will recomand for Using rem or em values for padding and margin provides a scalable and flexible approach, especially when considering accessibility and responsive design.
    • change to
    .blog-picture {
        margin: 0.7rem;
    }
    
    0
  • P

    @Glenda9031

    Submitted

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

    I'm learning json and this challenge gave me some needed experience

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

    My challenges are JavaScript and jSON

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

    JavaScript and JSON

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello, I would like to extend my congratulations on completing this challenge.

    • I will give suggestion i hope this is use your solution.
    • You will use in the navigation button tag that was very poor UI please change the background and the border It make more nice UI design.
    .activity-tracker__option {
        width: max-content;
        font=size: var(--font-size-time-window);
        color: var(--blue-200);
        transition: color 250ms;
        cursor: pointer;
    }
    
    • Use the following code in your CSS.
    .activity-tracker__option {
        width: max-content;
        font=size: var(--font-size-time-window);
        color: var(--blue-200);
        transition: color 250ms;
        cursor: pointer;
        color: #fff;
        background-color: transparent;
        border: none;
    }
    

    Marked as helpful

    0
  • @adfrontenddev

    Submitted

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

    I am happy to have completed another challenge. As I progress I would add more interactivity to the buttons.

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

    Styling the buttons properly.

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

    Sliming down the code

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello, I would like to extend my congratulations on completing this challenge.

    • I will give suggestion i hope this is use your solution.
    • You will use height:100vh this is not proper in mobile site.
    body{
       height: 100vh;
    }
    
    • If i will recommand for min-height:100vh; this is for proper use in mobile site small size screen also can be proper work change the code to.
    body{
       min-height: 100vh;
    }
    

    Marked as helpful

    0
  • alex 50

    @alexabalo

    Submitted

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

    .

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

    .

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

    .

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`m wishing for your completion in this project.

    • I will be see in your code
    • HTML to include a challenge and the author's name. Here's how you could do it:
    <footer>
      <p>Challenge by [Your Name]</p>
      <p>Author: [Author's Name]</p>
    </footer>
    
    • Feel free to replace [Your Name] and [Author's Name] with the appropriate names.
    • In CSS You will use
    .container{
        margin: 20px auto;
    }
    
    • I will recomand for Using rem or em values for padding and margin provides a scalable and flexible approach, especially when considering accessibility and responsive design.
    • change to
    .container{
        margin: 2rem auto;
    }
    
    0
  • olicoder13 110

    @olicoder13

    Submitted

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

    well these chanllenges are very interesting and they are helping me improve my web layout skills so I'm proud to making these chanllenges.

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

    I didn't know how to start this challenge but investigating in internet I overcome all difficulties

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

    I would like reciveing comments to improve my code or anything

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution.

    • I will give some suggestion i believe its used for improve your skill.
    • In CSS You will use
    .contenedor_primera{
             padding: 30px 60px;
             margin-bottom: 30px;
    }
    .slider{
            padding: 20px 15px;
    }
    
    • I will recomand for Using rem or em values for padding and margin provides a scalable and flexible approach, especially when considering accessibility and responsive design.
    • change to
    .contenedor_primera{
             padding: 3rem 6rem;
             margin-bottom: 3rem;
    }
    .slider{
            padding: 2rem 1.5rem;
    }
    

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution.

    • Nice solution. It`s proper HTML structure format .

    • If I want to recommend the <article> Ex: <div class="Instructions"></div> to use the <article></article>

    • The <article> tag in HTML, introduced with HTML5, serves a vital role in structuring web content. It delineates a self-contained and cohesive piece of content within a webpage, such as blog posts, news articles, forum posts, or even comments. Its purpose is to encapsulate content that could be distributed or reused independently.

    • By employing <article>, developers can semantically differentiate the primary content from peripheral elements on the page, aiding both search engines and assistive technologies in comprehending the significance of the encapsulated content. Typically, an <article> element includes a heading, usually marked up with <h1> to <h6>, providing a clear title or headline for the contained content.

    • This tag's usage aligns with the broader efforts in HTML5 towards improving the semantic structure of web documents, fostering accessibility, search engine optimization (SEO), and overall maintainability of websites.

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`m wishing for your completion in this project.

    • I will be see in your code
    • HTML to include a challenge and the author's name. Here's how you could do it:
    <footer>
      <p>Challenge by [Your Name]</p>
      <p>Author: [Author's Name]</p>
    </footer>
    
    • Feel free to replace [Your Name] and [Author's Name] with the appropriate names.
    1
  • P
    Moshiur 180

    @codermoshiur

    Submitted

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

    Implementing everything I've learned about HTML and CSS to accurately replicate the testimonials grid section.

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

    Ensuring that the design is implemented in a responsive manner; hence, use the browser developer tools to confirm responsiveness.

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

    Nothing specific, but any feedback is highly appreciated.

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution.

    • Nice solution. It`s proper HTML structure format .

    • If I want to recommend the <article>

    • The <article> tag in HTML, introduced with HTML5, serves a vital role in structuring web content. It delineates a self-contained and cohesive piece of content within a webpage, such as blog posts, news articles, forum posts, or even comments. Its purpose is to encapsulate content that could be distributed or reused independently.

    • By employing <article>, developers can semantically differentiate the primary content from peripheral elements on the page, aiding both search engines and assistive technologies in comprehending the significance of the encapsulated content. Typically, an <article> element includes a heading, usually marked up with <h1> to <h6>, providing a clear title or headline for the contained content.

    • This tag's usage aligns with the broader efforts in HTML5 towards improving the semantic structure of web documents, fostering accessibility, search engine optimization (SEO), and overall maintainability of websites.

    0
  • P

    @DiogoLuxa

    Submitted

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

    I'm proud of having organized myself well before starting to write any lines of code. In Figma itself, I've already separated the sections for each screen size and planned out how the classes would adapt, especially for desktop. I've also been pleased with how I'm adapting to Sass and its folder structure to keep projects more organized. Finally, I'm happy with the end result, which stayed very true to the design.

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

    The biggest challenge was with the hero images, which behave differently as we open the screen size. Creating a logic to structure this in a way that would be easy to code for all sizes was the icing on the cake.

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution.

    • I will give some suggestion i believe its used for improve your skill.
    • In CSS You will use
    @media (min-width: 768px)  {
    .hero {
        margin-bottom: 80px;
    }
    }
    
    • I will recomand for Using rem or em values for padding and margin provides a scalable and flexible approach, especially when considering accessibility and responsive design.
    • change to
    @media (min-width: 768px)  {
    .hero {
        margin-bottom: 8rem;
    }
    }
    
    1
  • @willengarcia

    Submitted

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

    Estudaria mais com importar uma fonte em css

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

    Superei a centralização, e as cores

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

    nenhuma

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello, I would like to extend my congratulations on completing this challenge.

    • I will give suggestion i hope this is use your solution.
    • You will use height:100vh this is not proper in mobile site.
    body{
       height: 100vh;
    }
    
    • If i will recommand for min-height:100vh; this is for proper use in mobile site small size screen also can be proper work change the code to.
    body{
       min-height: 100vh;
    }
    
    • Additionally you will use px this is not flexible use rem or em this is best practises.

    Marked as helpful

    0
  • Miarinaly 100

    @Mys1337

    Submitted

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

    Proud for having finished this project without too much struggle

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

    Didn't encounter any hard challenges. Just proud that everything I've learn so far are being used and not forgotten

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

    I would like to have opinion about the html sematics if it is correct. And also I would like to know if there is a specific way to structure the css file code to make a better code

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello I`m wishing for your completion project.

    • I will see in your project solution preview site.
    • Im appreciate your innovative` solution.I will some suggestion it is used for your solution.
    • In your CSS Code to change the following code to make proper solution format
    .container {
        background-color: hsl(0, 0%, 12%);
        display: flex;
        justify-content: center;
        flex-direction: column;
        border-radius: 10px;
        margin: auto;
        padding: 1%;
        font-family: "Inter";
        width: 20%;
    }
    
    • to change
    .container {
        background-color: hsl(0, 0%, 12%);
        display: flex;
        justify-content: center;
        flex-direction: column;
        border-radius: 10px;
        margin: auto;
        padding: 1rem;
        font-family: "Inter";
        width: auto;
    }
    

    Marked as helpful

    0
  • @risangabdurrahmang

    Submitted

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

    I`am completed this first challenge and i use a mobile first design approach

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

    I had difficulty in setting up responsive images but it can be solved with try codes

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

    I think it should be more thorough in writing code for responsive design

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello @risangabdurrahmang

    • To align the .content-description at the top level and add more space at the bottom, you can use the following CSS:
    .content-description {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: unset;
        height: auto;
    }
    
    • Regarding the .attribution tag inside the footer, you should remove the dot (.) before the class name in the HTML. Here's the corrected HTML:
    <footer>
        <div class="attribution"></div>
    </footer>
    
    • This ensures that the <div> element has the class "attribution" without the dot prefix, making it properly styled by your CSS.

    Marked as helpful

    0
  • Arcade 30

    @arcadecoder

    Submitted

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

    Doing this in less than 30 minutes

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

    Forgetting how to center a div in the middle of a webpage.

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

    None

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello I`m wishing for your completion project.

    • I will see your solution you trying to center the .card use with margin-top: 100px this is not proper alignment. To easily center the .card, I suggest using .centre { display: flex; align-items: center; justify-content: center; margin: 1rem;}. This method is simpler and more effective, especially for mobile and tablet modes.
    • Additionally, adjusting the .attribution at the last end of the content to add in your CSS property .attribution{position: absolute; bottom: 0%; }
    0
  • @Pedro-Edwaine-Da-Silva

    Submitted

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

    Ter terminado desafio. O comprometimento e a dedição que tive em ir pequisar novo conceitos apesar de ainda não os ter estudado no curso que estou fazendo.

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

    Ajustar os itens da flexbox pra serem do mesmo tamanho. Compreender as propriedades das flex como flex basics, flex shrink, flex-grow.

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

    Dimensionar os itens da flexbox

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello I`m wishing for your completion project.

    • I will see in your project solution preview site.
    • In your solution, adjust the following code to the proper size: .background{max-width:450px}.
    • Additionally, change the font size in the h1 and p tags to h1{font-size:2rem} and p{font-size:1rem} for a proper font size.
    1
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello I`m wishing for your completion project.

    • I will see your solution you trying to center the #main-content use with margin:5rem auto this is not proper alignment.
    • To easily center the #main-content, I suggest using body{min-height:100vh;display:flex;justify-content:center;align-items:center;}. This method is simpler and more effective, especially for mobile and tablet modes.
    • Additionally, adjusting the #main-content width to 350px ensures proper display across different devices.

    Marked as helpful

    1
  • @willengarcia

    Submitted

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

    Eu preciso de apoio na parte de estilização, pois não tenho tanta noção de cores e contrastes, assim como utilizar algumas fontes.

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

    Eu preciso de apoio na parte de estilização, pois não tenho tanta noção de cores e contrastes, assim como utilizar algumas fontes.

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

    Eu preciso de apoio na parte de estilização, pois não tenho tanta noção de cores e contrastes, assim como utilizar algumas fontes.

    Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello I`m wishing for your completion project.

    • In your solution was not proper design in the tablet and mobile mode in you will use div{width:27%} this is not proper change the code in your CSS by following code.
    div{
        width:350px;
        padding: 1rem;
    }
    img{
        width:100%
    }
    
    • Additionaly you will unused property code like p{width:90%;margin:auto} this is not needed if change the following code .
    p{
       text-align:center;
        padding:5rem 0;
        color: rgb(68, 68, 68);
    }
    

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello I`m wishing for your completion project.

    • Keep try to work You will be more pixel perfect solution.
    • Do your best You will be more mistakes in code I will be see your github page repo please to the image will be asset folder. Please do not outer the image.

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution. I'd like to give you some tips. Regarding CSS, it's a good practice to put it in a separate file rather than within index.html. This helps with maintenance and keeps your HTML cleaner and more organized.

    About HTML, I noticed that you forgot to add the alt attribute to your <img/> tag. It's always important to add this attribute, even if it's empty, as it helps with the accessibility of your page.

    And be careful with the use of headings. I noticed that you used <h2>, but it's correct to start with <h1>. There should always be at least one <h1> on your page, and you shouldn't skip heading hierarchy.

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`m wishing for your completion in this project.

    • I will be see in your code
    • HTML to include a challenge and the author's name. Here's how you could do it:
    <footer>
      <p>Challenge by [Your Name]</p>
      <p>Author: [Author's Name]</p>
    </footer>
    
    • Feel free to replace [Your Name] and [Author's Name] with the appropriate names.

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution.

    • I will give some suggestion i believe its used for improve your skill.
    • In CSS You will use .wrapper { padding: 1.2rem; }
    • I will recomand for Using rem values for padding provides a scalable and flexible approach, especially when considering accessibility and responsive design. .wrapper { padding: 16px }

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution.

    • I will give some suggestion i believe its used for improve your skill.
    • In CSS You will use
    .container{
       padding-left: 10px;
        padding-right: 10px;
        padding-top: 15px;
        padding-bottom: 25px;
    }
    
    • you will be use multiple line simply like use padding:'top ' 'right' 'bottom' 'left' this is one line easy to use.
    • change to
    .container{
       padding: 1.3rem 1rem 2.5rem;
                       //"top"   "right&left" "bottom"
    }
    
    • I will recomand for Using rem values for padding provides a scalable and flexible approach, especially when considering accessibility and responsive design.

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    I noticed your HTML is well-structured, but it lacks semantic markup, which is crucial for making your project more accessible and for SEO purposes. I'll suggest replacing some <div> elements with semantic tags for you to consider:

    • <div class="container"> could be replaced with a <main> tag, as it contains the main content of the page.
    • <div class="recipe-img"> could be replaced with a <figure> tag, as its content is just an image, and that image is the main focus.
    • <div class="recipe-step"> could be replaced with a <section> tag, as all the content within it is thematically related and dependent on the main content. Regarding the instructions section, you've created a somewhat verbose structure that could be simplified using an <ol> and <li>, which would reduce the need for so many <div> elements. You could then style the numbers using the ::marker pseudo-element.

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`m wishing for your completion in this project

    • I will be notice in your code something problem in the h1 , p and '.attribution'tag align doesn't proper.
    div h1,.div p{
        padding-top:1rem;
    }
    .attribution{
       position:absolute;
       bottom:0%;
       font-weight:400;
    }
    
    • It is more pixel perfect design

    Marked as helpful

    0
  • Sivaprasath 2,520

    @sivaprasath2004

    Posted

    Hello i`ll wishing for your completion project solution. I'd like to give you some tips. Regarding CSS, it's a good practice to put it in a separate file rather than within index.html. This helps with maintenance and keeps your HTML cleaner and more organized.

    About HTML, I noticed that you forgot to add the alt attribute to your <img/> tag. It's always important to add this attribute, even if it's empty, as it helps with the accessibility of your page.

    And be careful with the use of headings. I noticed that you used <h2>, but it's correct to start with <h1>. There should always be at least one <h1> on your page, and you shouldn't skip heading hierarchy.

    Marked as helpful

    0