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

  • Demaxs26 80

    @Demaxs26

    Submitted

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

    Hi ! I hope my solution is correct. Is the paragraph problematic because there is only two line ? Should I have used a flex box ?

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

    /

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

    /

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Congrats on finishing your first challenge!

    Some things I would suggest you to alter/change:

    • instead of using <h2>, you should use the <h1> tag as headings are meant to be used in order from <h1> to <h6> without skips. The headings come with default font sizes that can be changed using the font-size attribute in css
    • to center the white card you can do something like this for the parent container which in this case is your <body> element:
    body{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       min-height: 100vh;
    }
    

    Hope you find this feedback useful 👍

    Marked as helpful

    1
  • Vien 30

    @pblanabelle

    Submitted

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

    I'm proud of achieving a cohesive and functional design with the Social Links Profile Page. Next time, I would prioritize upfront planning and accessibility considerations, seeking more feedback to refine my skills and ensure inclusivity in web design.

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

    none

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

    I don't know. Maybe a comment to improve my codes.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty good.

    The main things I'd alter/change with your code are:

    • using a <main> tag to improve accessibility
    • using a <h2> tag instead of a <h5> tag as headings are meant to be used in order from h1 to h6 without skips
    • leaving the alt description of the image empty like alt="" as descriptions are mainly used for images that convey important information. Decorative images can just have empty alt

    Aside from that your site looks great!

    Marked as helpful

    0
  • P
    yinnie 210

    @wcyin9

    Submitted

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

    I'm sort of happy I was able to make it responsive, but there's lots of areas where I can improve on in terms of the code when it comes to responsive design.

    Next time I might try to do mobile first approach, where I code out the mobile view first then expand on the larger sizes.

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

    There were two areas that I struggled with:

    1. adding padding within ul/ol, as well as aligning the text. I was able to solve it by using list-style-position: inside and ::marker to decorate the bullet points. In terms of aligning the text, I discovered that position: relative helped me add space between the bullet points and the paragraph. text-indent in combination with padding-left made the paragraph align on the left
    2. responsive sizing on mobile screen. I used fixed sizing in the original code, so I struggled with making it responsive in the mobile view. I solved this by using em/%. Next time I'll try to not depend entirely on given sizes by the Figma design, and use responsive units of measurement instead.

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

    I feel as if my code could be condensed more, but I'm not sure how. There were a lot of repetitiveness that I could do without. In addition, I don't know if I overdid it with the classes and tags in the html.

    If there's better approaches to responsiveness than what I wrote, please let me know. I will gladly take criticism from any weak areas you may spot.

    Responsive Recipe Page CSS

    #accessibility#animation

    1

    Bryan Li 3,590

    @Zy8712

    Posted

    Your site looks pretty good. The main thing I'd change is that I would've used a table for the nutrition section so it would've been easier to format everything. Your code could look something along the lines of this:

    <table>
       <caption>
                The table below shows nutritional values per serving without the additional fillings.
       </caption>
       <tr>
            <th>Calories</th>
            <td>277kcal</td>
       </tr>
       <tr>
            <th>Carbs</th>
            <td>0g</td>
       </tr>
       <tr>
            <th>Protein</th>
            <td>20g</td>
       </tr>
       <tr>
            <th>Fat</th>
            <td>22g</td>
       </tr>
    </table>
    

    Marked as helpful

    1
  • P
    Gab 160

    @gab-holik

    Submitted

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

    Any feedback is appreciated. Thank you 🙂

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks great and follows the original design closely. Nice work!

    Some things I'd suggest you to change with your code:

    • for decorative images you should leave the alt description empty like alt="" as screen readers will read anything that is in the alt descriptions. Meaning in your case it'll read things like "one star", "two star", "Customer image of Irene Roberts", etc
    • alt descriptions for <img> tags should mainly be used for images that convey some important information

    Aside from that your code structure looks great. Hope you find this feedback useful 👍

    Marked as helpful

    1
  • @LeandroJr730

    Submitted

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

    I am proud of making the website "work" on mobile devices by my own, just by searching the basics on the internet. I need to learn how to use semantic tags better, so my code is easier to read.

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

    I spent a lot of time trying to get the perfect margins, paddings, etc. I should do it faster and focus more on other things. I also struggled to make my website work on mobile devices but it ended up kind of working.

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

    I need to use better semantic tags and improve the way my website is displayed in mobile devices.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty good.

    Some things I would recommend you to change/modify with your code:

    • you should use a heading tag like <h1> for the title of the card and you should also use a <p> paragraph tag for the text of the card. This is primarily for semantic and accessibility purpsoes
    • for <img> tags you can leave the alt decription empty like alt="" as descriptions are mainly used for images that convey some important information. So decorative images can be left empty

    Aside from these two things, you've got solid code structure 👍

    Marked as helpful

    1
  • @svetikbaihe

    Submitted

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

    I am not quite proud of myself in this project, frankly speaking. It took a lot of time for doing simple things because of the inattentiveness and lack of practice.

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

    I definitely had challenges with sizes and the general understanding of the necessary positions of an element, like, what I need to do to place it in the right place on the page. I just tried different things, like removing width and height on certain elements, using flex and removing it again. In the end, I managed to make it look like as it does in Figma.

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

    It'd be grateful for any feedback, any advice on html structure, how to organize things on the page, how properly use width and height, maybe some advice about using different units and values( px, vh, em, rem).

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Congrats on finishing your first challenge, your site looks great!

    Some things I feel like you could change/modify with your code:

    • instead of using an <h2> tag you should use an <h1> tag as headings are meant to be used in order from h1 to h6 without any skips. They all come with default font sizes that can be changed in css with the font-size attribute
    • for the height of your <body> I would recomment using min-height: 100vh as opposed to height: 100%, as its standard practice and gives you the desired result in almost every scenario
    • for you <img> you could leave the alt description empty in most cases unless the the image conveys some important information that needs to be read out by screen readers (not too sure how it would work in this case with a qr code though)

    Aside from that your code structure is excellent and your site looks virtually identical to the original design. Nice work 👍

    Marked as helpful

    0
  • @KatherineMarlo

    Submitted

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

    I'm most proud of how the responsive design turned out. Ensuring that the website looks great and functions well on various devices was a significant accomplishment. Next time, I would approach the organization of my HTML differently. I would strive to implement a more structured and modular approach to make the code easier to maintain and update in the future.

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

    Making sure that the containers and items were aligned properly. A lot of work with the inspect tools to make sure i got spacing and everything as close to the design as possible.

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

    making sure that everything is up to best coding practices and anything i could do more efficiently.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty good.

    Here are somethings I feed you could change next time:

    • instead of assigning your container a width of 40%, you should probably just assign it a clearly defined width so that the text doesn't shift so much when the portview size changes
    • you should leave the alt description empty like alt="", alt descriptions are mainly used to describe images that convery some type of information so decorative images should just have their descriptions be left empty

    Hope you find this feedback useful 👍

    Marked as helpful

    1
  • @Litheesh-kumar

    Submitted

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

    greyish blue background color.couldn't be done.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty good.

    The only thing I'd change is how you centered your card. Instead of making a container with 98vh, I would suggest something like:

    body{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       min-height: 100vh;
       background-color:  hsl(212, 45%, 89%);
    }
    

    Hope yuo find this feedback useful 👍

    Marked as helpful

    0
  • @NithishSaran04

    Submitted

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

    Learnt many new things while practing.

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

    I learnt to break and start a new line within paragraph using and positioning in css.

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

    There are lot of topics for me to be covered.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty solid and is quite similar to the original design. Nice work!

    Some changes I would personally recommend:

    • instead of giving your card position absolute and centering it using left & translate, you should use flexbox
    • to use flexbox just go to the parent container, which in this case is your <body>, then you can do something like:
    body{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       min-height: 100vh;
    }
    

    Flexbox is a important concept/skill in css. To learn more about it I recommend this video.

    Hope you find this feedback useful 👍

    0
  • @complic8-coder

    Submitted

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

    Any feedback or comments are welcomed and appreciated 👍

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty solid. The only main things I'd change are:

    • instead of using <h2> for the numbers, it might be better if you used a <span> and then assigned a font-size for the numbers in the <span> tags
    • assigning a width to the card in its mobile layout so it doesn't stretch and compress so much based on the portview size

    Hope you find the feedback useful 👍

    Marked as helpful

    0
  • P
    yinnie 210

    @wcyin9

    Submitted

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

    I liked implementing transitions to the buttons with hover effect, it added a bit more depth to the design.

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

    In figma, the design looked identical in both mobile and browser view so I opted out of adding a media query. However, upon further look, I realized that the dimensions were indeed different, so I added a media query. I don't know the best px to use for specific devices, so I went with the one given in figma.

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

    When it comes to buttons, I'm not sure if I should use p with css styles to make it look like a button, or if I should use the button tag that already exists in HTML. I would like to know if there's specific situations where one is better than the other, or if it's just a personal preference for developers.

    Another area is the sizing; currently I use fixed sizing (px) for the container since I'm trying to get the final product to look as similar to the design as possible. Should I instead use em/vw/vh/% to make it more responsive, despite given the specific dimensions in figma?

    Social Links Profile CSS

    #accessibility#animation

    1

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi @yinnie, your site looks great!

    To answer your question:

    • this project is a social links profile so you should probably use the links tag <a> for the boxes as it is built for that intended use. This would be better for semantics and we can use the built-in attributes for link tags like href and target

    The only other feedback I'd give is that the alt description for the image can be left blank if you want (alt="") because its usually only used to describe images that convey important information.

    Aside from that your site looks great!

    Marked as helpful

    1
  • ana-lsm 80

    @ana-lsm

    Submitted

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

    That it is responsive.

    I would try to make it more accessible for screen readers.

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

    The hover on the card, to make the box-shadow bigger.

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

    The semantic tags in HTML

    Bryan Li 3,590

    @Zy8712

    Posted

    Your site and code look pretty solid. Proper semantic tags were used where applicable and your code is well structured.

    The only change I'd suggest is:

    • leaving the alt description for images empty like alt="". The alt description is usually mean to describe some form of important information that a image is showing, so for decorative images you can leave it empty

    Besides that it seems you understand what to do. Nice work 👍

    Marked as helpful

    1
  • Cynthia 50

    @tina4449

    Submitted

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

    I can quickly finish the HTML part and move on to the styling part. Next time, I will create a set of variables to help me learn how to build the style library.

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

    I kept trying to center the div element on the webpage because I couldn't get my element to move to the center along the y-axis. So I googled it and finally realized that I need to set the vh if I want to center stuff along the y-axis by asking ChatGPT.

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

    I want to know whether my code is correct and well-organized. Are there any redundancies that can be improved?

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks great and follows the original design very closely. Nice Work!

    Some changes I recommend:

    • you should use a <h1> tag instead of a <h3> tag as headings are meant to be used in order from h1 to h6 without skips. The headings all come with default fontsizes which can be modified using font-size (like you already have done)
    • for improved accessibility you should use a <main> tag around your page's main content
    • for your <body> you should use min-height instead of height

    Aside from that your scss and html code looks clean and is easy to follow. Great work 👍

    Marked as helpful

    0
  • Victor 280

    @VictorKevz

    Submitted

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

    I am glad that I was able to make this component responsive as needed. Responsiveness is still something I am still working on(getting better) especially if I use React to do my projects. I am so glad that I managed to learn more about positioning. I usually cheat with align-self to properly position my footer but I fully understand relative and absolute(a bit of a pain🤣).

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

    I had a challenge with setting the border-radius to my items on viewports

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

    Any comments are welcome. I am here to learn🥰

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site and code look great, nice work!

    Some changes I'd recommend:

    • you should probably change your <h1> tags to <h2> tags as there is only supposed to be one <h1> tag per page. So you could declare an <h1> tag and make it invisible while placing text in it describing the webpage
    • for improved accessibility you should use a <main> tag to encapsulate your page's main content
    • one other change is that you should add font weight to the button text and also make sure the text colour matches the column's color

    Aside from that your site looks great! Hope you find this feedback useful 👍

    Marked as helpful

    0
  • P
    yas-avocad 320

    @yas-avocad

    Submitted

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

    Using flex more effectively. Was much faster to use flex and gap, rather than setting margin for each individual item.

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

    The background on the 'learning' item took up the whole line, despite setting the display property to inline-block. Align-self: flex fixed the problem

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

    Font size/weight for the main body of text. I can't seem to get it exact.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks great!

    To answer your question:

    • I believe the font weight of your paragraph should be set to 500 not 400. Aside from that your font size and line height looks correct

    Hope this helps 👍

    1
  • @JordonGoodsir

    Submitted

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

    The speed in which I built it, have a boilerplate

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

    N/A

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

    Any feedback is nice

    Flexbox QRComponent

    #react#tailwind-css

    1

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks great.

    The only changes I would suggest are:

    • using an <h1> tag instead of <p> for the title of the qr card
    • using font-['Outfit'] on the div containing your text, so you don't need to place font-['Outfit'] twice
    • since you are using tailwind and react you should try to install the tailwind cli for more customizability

    Aside from that your site is solid. Nice work 👍

    Marked as helpful

    0
  • P
    yoe7501 240

    @yoe7501

    Submitted

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

    I finished this honestly really quickly

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

    I thought getting the padding/ margin pixel perfect was pretty difficult but got the pretty close.

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

    I would like tips on cleaner code. I don't think its messy but maybe ways to make it easier going forward?

    Bryan Li 3,590

    @Zy8712

    Posted

    Your site looks pretty solid.

    The only things that really stands out to me as needing to be changed are:

    • you should use a link tag <a> instead of a <button> tag as thats what the project calls for
    • you should remeber to add the font-weight to the link's text

    Besides that your code looks great!

    0
  • @CardboardPL

    Submitted

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

    That it is at least close to the design and I will probably try harder next time to get it close enough.

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

    Implementing the design was my biggest challenge and I overcame it by just telling myself that it doesn't have to be pixel perfect.

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

    Feedback.

    Bryan Li 3,590

    @Zy8712

    Posted

    Your site looks great and code is easy to read. Nice work!

    Some changes I'd suggest are:

    • leaving the alt description on images empty (alt=""). Descriptions for images are mainly used for images that convey some type of information. So decorative images that don't have any information can just have their descriptions be left blank
    • you should use a <h1> tag instead of an <h2> tag as headings are supposed to be used in order from h1 to h6 without any skips. The headers come with default font sizes that can be changed using the font-size attribute

    Hope you find this feedback useful 👍

    Marked as helpful

    1
  • @kevsmartini

    Submitted

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

    This was my third challange so far and I made it in a short time.

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

    I would say none, this one was very fluently I really enjoyed it and i felt very confident doing it.

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

    Any little detail you see that can be improved, I am really willing to learn!

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty good and your code is easy to read.

    Some changes I would suggest:

    • you should use a <h1> tag instead of an <h2> tag as headings are supposed to be used in order from h1 to h6 without any skips. The headers come with default font sizes that can be changed using the font-size attribute
    • one effect your site is missing is that the box-shadow of your card should increase in size when users hover over it

    Aside from that your sites looks pretty solid. Nice work 👍

    0
  • P
    yinnie 210

    @wcyin9

    Submitted

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

    I'm proud of making the solution quite similar to the design, but I feel like there's still areas that are different.

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

    I was hesitant on using certain html tags for sectioning layouts. I wasn't sure if aside was necessary.

    I also need help with the hover state! I want to trigger the increase in box shadow as well as the change in H1 font color to yellow, but I don't know how to trigger both of them at once. If I add :hover to card container, I can only increase the box shadow.

    If I simply add H1:hover, the font change will only trigger when I hover on H1 specifically. How can I change the H1 font color when I hover over the entire card?

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

    I think I have a tendency to write redundant code, so if anyone has tips on how I can change my code to be more efficient that would be really helpful. I would also like to know if I chose the right html tags. All other critiques are also welcome!

    Blog Preview Card CSS Hover Effect

    #accessibility#animation

    1

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! To change the color of the <h1> text when you hover over the card you can do something along the lines of:

    main:hover h1{
     	color: #F4D04E;
    }
    

    Hope this helps 👍

    Marked as helpful

    1
  • joacomenda 150

    @joacomenda

    Submitted

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

    I'm most proud of the analysis before making the website, this made the transition to bigger displays much more easy.

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

    I found difficult to assign the relative units to the different parts of the webpage.

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

    How to center vertically the container of my whole design, so it looks good in all the displays.

    Bryan Li 3,590

    @Zy8712

    Posted

    Hi there! Your site looks pretty good.

    To answer your question, one of the most basic ways of centering the card for this page would be to just use flexbox for your <body> tag. It could look something like this:

    body{
       width: 100vw;
       min-height: 100vh;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       overflow: hidden;
    }
    

    The attribution may interfere with your centering so you could just use this to get it out of the way:

    position: absolute;
    bottom: 0px;
    

    Hope you find this feedback useful 👍

    0
  • P
    yoe7501 240

    @yoe7501

    Submitted

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

    I'm proud that I didn't use many resources and that I finished it really quickly. I'm not sure I'd do anything different I just don't know if having so many flex boxes is best practice.

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

    I had a hard timing getting the padding between texts ended up removing all padding and margins from the whole project with * and then adding them individually.

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

    Creating neater code?

    Bryan Li 3,590

    @Zy8712

    Posted

    Appearance wise, your site and code look pretty solid.

    The main things I'd change are:

    • your <div> with class cotainer to a <main> tag for accessibility reasons, also you don't refer to the this class anywhere in your css so that div is sort of redundant
    • instead of using a <h2> tag you should use an <h1> tag as headers are meant to be used in order from h1 to h6 without any skips. The headings come with default font sizes that can be changed using the font-size attribute in css
    • the one thing your site is missing is the hover effect for the text and card, you can added the hover effect using the :hover selector in css

    Hope you find this feedback useful. If you have any questions feel free to ask 👍

    Marked as helpful

    0
  • P
    yinnie 210

    @wcyin9

    Submitted

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

    I'm most proud of having the final product look very similar to the design. Having access to the figma file is very helpful to the process. Next time I should organize all the font styles and colors before I start coding so I don't have to go around looking for them in the middle of coding.

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

    I had a bit of trouble with flex. I mistakenly tried to center the container in the child instead of the parent class, which ended up in me centering it horizontally only. I figured out that display: flex should have been in the parent, and upon changing it, I successfully centered it vertically.

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

    I am not sure if the code I wrote could have been written more efficiently. I think I have a habit of writing excess code, or doing things in a way that use more code than necessary. If anyone has more effective ways that I could implement, please let me know.

    QR Code using CSS

    #accessibility#foundation

    1

    Bryan Li 3,590

    @Zy8712

    Posted

    Your site looks great and your code is really minimal. Nice work!

    Some things I'd suggest you to change:

    • use <h1> instead of <h3>, heading tags are meant to be used in order from h1 to h6 without any skips. All of these heading tags come with default font sizes which can be modified using the font-size attribute
    • the use of the <article> tag is perfectly fine, though most people would include the <main> tag for their page's main content

    Hope you find this feedback useful 👍

    Marked as helpful

    1
  • @raphaelperfi

    Submitted

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

    Keep the layout identical, I still need to fix the font-size

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

    The responsiveness, I changed the font size with media queries

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

    I want tips on responsiveness

    Bryan Li 3,590

    @Zy8712

    Posted

    Your site looks pretty solid. The only thing I'd change is how you are centering your card. You should assign flexbox to the body of your page, so instead of using margin-top you should use something like this:

    body{
       width: 100vw;
       height: 100vh;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       overflow: hidden;
    }
    

    Hope you find this feedback useful 👍

    Marked as helpful

    1