Not Found
Not Found
Your session has expired please log in again.
Your session has expired please log in again.
Your session has expired please log in again.
Your session has expired please log in again.
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Responsive Web using Grid (SASS)

Tin.Pham 250

@tin-pham

Desktop design screenshot for the Four card feature section coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


I think this is my fastest project on FrontEnd Mentor so far. Feel free to give feedback

Community feedback

T
ApplePieGiraffe 30,545

@ApplePieGiraffe

Posted

Hi there, Tin Pham! 👋

Nice to see you complete another challenge! 😀 Good job on this one! 👏

The only minor suggestion I have is to use a single <h1> tag for the heading of the page in this challenge (since it is really just a single heading, not two separate headings). You can easily style the two parts of the heading differently by wrapping one of the parts in a <span> tag, like this,

<h1>
  Reliable, efficient delivery
  <span>Powered by Technology</span>
</h1>

And then do something like this in your CSS to style them differently,

h1 {
  color: red;
}

h1 span {
  color: blue;
}

I hope that helps. 🙂

Keep coding (and happy coding, too)! 😁

1

Tin.Pham 250

@tin-pham

Posted

@ApplePieGiraffe Oh thank you so much, now my HTML look more clear

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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