Latest solutions
Latest comments
- @danish-khan962@Gosia-Ras
HTML needs serious work - there are a few places where it looks like this
<div class="box-1"> <div class="text"> <div class="head">Graphic Design</div> <div class="para">Great design makes you memorable. We deliver artwork that underscores your brand message and captures potential client's attention. </div> </div> </div>
You absolutely should use heading and paragraph tags here. In general I see too many divs used in place of semantic tags (missing header, main, sections intead of divs). Naming of each section should be more descriptive than area 1, 2, 3 - it would improve readability of both HTML and CSS.
When fixing CSS: aside from the Flexbox in area 2,3 etc., pay attention to the font size and font weight.
Keep working :)
- @ecemgo@Gosia-Ras
I like the subtle animation on the arrow down, it fits the design very well :) Also, awesome that you made the triangle work with ::before element, I couldn't get it to be responsive on smaller screens. Good solution!