Hi @0-scripter,
I reviewed your code, and you've done a great job so far! I have a few suggestions that could make the solution even cleaner and more aligned with best practices:
Semantic HTML Usage:
Consider using meaningful headings like <h1> or <h2> for titles instead of <p> tags. This helps with both readability and accessibility.
Group related elements using meaningful containers like <div> or <section> for better structure and styling.
CSS organziation:
Move the inline CSS(in index.html) for .attribution into the your external css.css file to separate concerns.
Alt Text Improvements:
Avoid repeating the image file path in the alt attribute. Instead, describe the image's function. For example:
alt="QR code to visit Frontend Mentor"
Ensure that the alt attribute accurately describes the purpose of the image rather than the file path.
Personalization:
Update "Coded by <a href="#">Your Name Here</a>" with your actual name to make the footer more personalized and authentic.
Remove Repeated Lines:
Lines 29 to 30 appear to repeat the content already found in lines 43 to 46. You could remove lines 29 to 30 to avoid duplication.
These tweaks will improve your code’s readability and accessibility. Keep up the great work! 😊
Best regards,
Rora