Google Maps CSS

<!-- CSS is the styling language for HTML, so here is the HTML code -->
<script>
function myMap() {
var mapProp= {
  center:new google.maps.LatLng(51.508742,-0.120850),
  zoom:5,
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
</script>

<script src="[Google API link goes here]"></script>
CtrlKey