Latest solutions
Responsive Social Links Profile using React & Tailwind
#foundation#react#tailwind-css#freshSubmitted about 1 year agoI used Tailwind for the first time. Any feedback is appreciated. :)
Responsive Chat App CSS Illustration
#accessibility#foundation#progressive-enhancementSubmitted about 1 year agoResponsive advice generator
#fetch#fresh#solid-js#vanilla-extract#foundationSubmitted about 1 year agosunnyside-agency-landing-page usig reactjs
#animation#react#react-testing-librarySubmitted over 1 year agoResponsive intro component with signup form built with React
#foundation#fresh#react#web-componentsSubmitted over 1 year ago
Latest comments
- @AhmadMujtaba200210Submitted about 2 years ago@amelia2802Posted about 2 years ago
- Replace
<h5>
with<h1>
. - Use
<section>
instead of div - In the stylesheet set
.qr
height auto and decrease the width. - add media queries for mobile devices (you can set max-width upto 600px) then adjust the style accordingly.
Hope this will help you :)
Happy Coding!🎉
0 - Replace
- @NicoloSuppaSubmitted about 2 years ago@amelia2802Posted about 2 years ago
Hey, Congratulations on completing your first challenge! 🎉
Here are few suggestions to improve your project.
Replace the
<h2>
with<h1>
and<div>
with<section>
,<footer>
according to your code.Hope you find it helpful!
Happy Coding.😄
0 - @ZeroScriptzSubmitted about 2 years ago@amelia2802Posted about 2 years ago
Hi Zack, Congratulations on completing your first challenge! 🎉
From your code, I can see that
- You've declared the card section
<section class="md">...</section>
outside of the<body>...</body>
tag. You should declare it inside of the body tag. - Add an
alt=" "
attribute to the<img>
as it will be helpful for screenreaders. - wrap that
.qrHead
andChallenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
with<p>...</p>
tags as those aren't headings. - Add display:flex into the
.section{..}
.
Hope you find it helpful!
Happy Coding.😄
Marked as helpful1 - You've declared the card section