Design comparison
SolutionDesign
Solution retrospective
please give a comment for my exercise , thank u
Community feedback
- @i7ectorPosted over 1 year ago
Good work @putracode354!
here are few things you can do to make your design and code better.
to fix the error with the divs you need to remove the href="#" from your code in your HTML. look at the examples below:
<div href="#" class="example example1"> example 1 - hrefs are not used in divs </div> <div class="example example2"> example 2 - how it should be </div> <div id="exampleid" class="example example3"> example 3 - you can have a id and a class in the div </div>
you can add a border radius to round the corners of the main card in your CSS. look at the example below:
.main-card-example { border-radius: 15px; }
you can also add a background color for this project in your CSS. look at example below:
body { background-color: hsl(0, 0%, 95%); }
hope this helps, good luck and happy coding :)
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord