View Larger Image How to Display Google Reviews On Your Website Step 1. Copy This Code. Copy to ClipboardSyntax Highlighter Step 2. Find Your Google Place ID: use following link to get your Place ID -> https://developers.google.com/places/place-id Changing the Way It Looks ( CSS ) : Copy to ClipboardSyntax Highlighter#map-plug {display:none;} #google-reviews { display:flex; flex-wrap:wrap; //display: grid; //grid-template-columns: repeat( auto-fit, minmax(320px, 1fr)); } .review-item { border:solid 1px rgba(190,190,190,.35); margin:0 auto; padding:1em; flex: 1 1 20%; } @media ( max-width:1200px) { .review-item { flex: 1 1 40%; } } @media ( max-width:450px) { .review-item { flex: 1 1 90%; } } .review-meta, .review-stars {text-align:center; font-size:115%;} .review-author { text-transform: capitalize; font-weight:bold; } .review-date {opacity:.6; display:block;} .review-text { line-height:1.55; text-align:left; max-width:32em; margin:auto;} .review-stars ul { display: inline-block; list-style: none; margin:0; padding:0; } .review-stars ul li { float: left; margin-right: 1px; line-height:1; } .review-stars ul li i { color: #E4B248; font-size: 1.4em; font-style:normal; } .review-stars ul li i.inactive { color: #c6c6c6;} .star:after { content: "\2605"; }Step3. Get you Google API key from following link: https://developers.google.com/places/web-service/get-api-key Here is source of article you and read and use …