Users should be able to:
- View the optimal layout for the site depending on their device's screen size
- Live Site URL: Testmonials Grid Section
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
- CSS shorthand example(2 values)
div{
/* : top & bottom、right & left */
padding: 5px 3px;
margin: 0 auto; /*easy way to center item in container*/
}
- Response Web Design using mediaquery
@media(min-width: 576px){
/* some content here */
}
- flexbox
.itemContainer{
display: flex;
flex-direction: column;
}
.items{
flex-basis: 25%;
}
- Font settings
- open google fonts
- choose the fonts family and its weight
- copy the and place it in the head of html document.
- set the fonts by {font-family}
- Frontend Web Development Bootcamp Course - This is my first frontend learning videos that I watch on Youtube. I follow the videos to accomplish this challenge.
- MDN web doc - The MDN Web Docs site provides information about Open Web technologies
- Frontend Mentor - VictorChao