Can I incorporate a Google Map into my website using only CSS?
<div class="map"></div>
.map{
background: url("https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4450.37576469368!2d47.31305345548099!3d56.101968401211494!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x39a74418f9829faa!2z0J_QtdGA0LXQutGA0LXRgdGC0L7Qug!5e0!3m2!1sru!2sru!4v1600523332413!5m2!1sru!2sru");
}
Check out this example on JSFiddle
If it is achievable, what specific parameters need to be defined in the CSS to display the map?