Skip to content

This is a solution to the [Testimonials grid section challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/testimonials-grid-section-Nnw6J7Un7). Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Notifications You must be signed in to change notification settings

AustinKing5/testimonials-grid-section-main

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

testimonials-grid-section-main

This is a solution to the Testimonials grid section challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

The challenge

Users should be able to:

  • View the optimal layout for the site depending on their device's screen size

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • CSS Grid
  • Desktop-first workflow

What I learned

I learnt how to make css grid responsive.

<h1>Some HTML and CSS codes I'm proud of</h1>
 <article class="Jonathan">
        <img src="./images/image-jonathan.jpg" alt="Jonathan Walters image">
        <h3>Jonathan Walters<br>
          <span> Verified Graduate</span></h3>
        <h4>The team was very supportive and kept me motivated.</h4>
        <blockquote>
          “ I started as a total newbie with virtually no coding skills. I now
          work as a mobile engineer for a big company. This was one of the best
          investments I’ve made in myself. ”
        </blockquote>
      </article>
.container{
    grid-template-columns: repeat(3, 1fr);
}

.Daniel{
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.Jonathan{
    grid-column: -3 / -2;
    grid-row: 3 / 4;
}
.Jeanette {
    background-color: white;
    grid-column: -4 / -3;
    grid-row: 3 / 4;
}

Author

About

This is a solution to the [Testimonials grid section challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/testimonials-grid-section-Nnw6J7Un7). Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published