Latest solutions
Latest comments
- @funficient@blackdreamer15
Hey, @funficient! Great work out there.
You do not actually need to create that illustration. It is part of the assets. In case you do not have those, The link below refers you to my GitHub where you can get those assets:
pattern-background-desktop.svg
andpattern-background-mobile.svg
.Best of luck! 😊
Marked as helpful - @YaSh8202@blackdreamer15
Hi @YaSh8202! Congratulations on completing this challenge. I checked your code on GitHub and have some suggestions to make.
-
You need to add the alt attribute to the img tag to solve the HTML issue.
-
You have to use a <h3> tag instead of a <h3> tag to resolve one of the accessibility issues. Conventionally, you have to start with a level-one heading. (that is, the h1 tag)
-
For the semantic reasons, it will be best to change <div class="center"></div> to <main class=""></main> since it contains the main content of the page.
-
I think the <div class="card"></div> is not really important since you can apply the styles directly to the <main class=""></div>.
-
For the <div class="attribution></div>, it will be best to use <footer class="attribution></footer> instead to resolve one of the accessibility issues.
Good luck with your other challenges.
Marked as helpful -
- @kermitcosta@blackdreamer15
Hi @kermitcosts! Congratulations on completing this challenge. I checked your code on GitHub and have some suggestions to make.
-
You have to use a <h1> tag instead of a <p class="first-text"></p> to resolve one of the accessibility issues.
-
For the semantic reasons, it will be best to change <div class="main"></div> to <main class="main" role="main"></main> since it contains the main content of the page. Let it embed the whole main content of the page.
Good luck with your other challenges.
Marked as helpful -
- @urrrch@blackdreamer15
Hi @urrrch! Congratulations on completing this challenge. I checked your code on GitHub and have some suggestions to make.
-
You have to use a <h1> tag instead of a <h4> tag to resolve one of the accessibility issues. Conventionally, you have to start with a level-one heading. (that is, the h1 tag)
-
For the semantic reasons, it will be best to change <div class="content"></div> to <main class="content"></main> since it contains the main content of the page.
-
I think the <div class="wrapper"></div> is not really important since you can apply the styles directly to the <main class="content"></div>.
-
Also, you can increase the dimensions of the container and its items to make the whole QR code component a bit bigger.
-
You can also add some padding to the content to add some spaces between them.
Good luck with your other challenges.
-