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

  • anthony 170

    @Codingtry123

    Submitted

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

    learn how to use scale to make the website more responsively

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

    assign the space using grid template do the calculation carefully

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

    when should I using relative unit for the length of container?

    persanu13 100

    @persanu13

    Posted

    Strengths: The solution considers layout adjustments for smaller screens, which is beneficial for accessibility. Improvements: Alt text for images: Make sure every image tag, like <img>, has an appropriate alt attribute describing the content of the image. This is essential for screen readers. Color Contrast: Ensure that the color contrast between text and background is sufficient for users with visual impairments. You can use tools like the WebAIM Color Contrast Checker to verify this. Focus States: Ensure that all interactive elements (e.g., links, buttons) have visible focus states, helping keyboard users navigate your content.

    0
  • persanu13 100

    @persanu13

    Posted

    Semantic HTML: Ensure that the HTML structure is semantic and meaningful. Accessibility: Improve color contrast and consider font scalability for better accessibility. Layout: The layout is responsive for smaller screens, but additional media queries might be needed for other sizes. Code Quality: Maintain consistent units, avoid redundant styles, and use classes for reusable styles. Design Consistency: Address any inconsistencies in styles, such as multiple box-shadow definitions.

    Marked as helpful

    0
  • persanu13 100

    @persanu13

    Posted

    Evaluation: Based on the provided CSS, it's challenging to fully assess semantic HTML without seeing the HTML structure. However, ensuring the HTML markup uses semantic elements (like <header>, <nav>, <main>, <article>, <footer>, etc.) is crucial for accessibility and SEO. Feedback: If the HTML follows semantic practices, that’s excellent. If not, consider using semantic tags to improve document structure and accessibility. For example, <main> and <article> are used correctly, but ensure that other elements like images and sections are wrapped in appropriate semantic tags.

    0
  • @Tobai24

    Submitted

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

    I am proud of the new things i have learnt working on this project.

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

    I would say styling the list and the table but it was a fun experience overall.

    persanu13 100

    @persanu13

    Posted

    Positive: "Good job including descriptive alt attributes for your images. This ensures that users with screen readers can understand the content." Improvement: "Consider improving keyboard navigability by ensuring all interactive elements, like buttons and links, are accessible via the keyboard. Also, adding aria-labels to your icons would improve accessibility."

    1
  • Salva 250

    @salva-it

    Submitted

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

    I am very happy to finish the third challenge

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

    I used CSS Variables in this project and it was an interesting challenge to manage the colors part of the design

    persanu13 100

    @persanu13

    Posted

    Observation: The code is generally responsive, with a media query that adjusts the .container width for screens up to 375px. Suggestion: Consider using max-width: 100%; for the .container instead of width: auto; in the media query to ensure it adapts well to very narrow screens. Improvement: The height: 100vh; on body could cause issues on mobile devices where the address bar is considered part of the viewport. Consider using min-height: 100vh; instead, which is more reliable.

    0
  • persanu13 100

    @persanu13

    Posted

    Strengths: If the solution uses elements like <header>, <nav>, <main>, <article>, <section>, <footer>, etc., it is likely semantically sound. These elements provide meaningful structure to the page, making it more understandable for browsers, screen readers, and other assistive technologies. Improvements: If non-semantic elements like <div> or <span> are used excessively, consider replacing them with more appropriate semantic elements. For example, instead of using <div> for a navigation bar, use <nav>.

    0
  • @AtharvShelke4622

    Submitted

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

    I am happy that I completed this project.

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

    I encountered some challenges while styling but I overcome them by learning.

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

    I need help with figma files.

    persanu13 100

    @persanu13

    Posted

    First of all, great job on creating a visually appealing and functional QR code card! Here are some specific points that stood out: 2. Design & Aesthetics: The overall design of the page is clean and modern. The use of colors and typography is consistent, and the layout is well-structured, making the card visually appealing.

    1. Code Structure & Readability: Your HTML and CSS code is well-organized and easy to follow. The use of semantic HTML elements adds to the readability and maintainability of the code.
    0