Bootstrap contact details ui section with map on side, you can use this on middle of your web page, simple div structure easy to implement.
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<title>Bootstrap contact section</title>
</head>
<body>
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
}
.btn {
padding: 14px 26px;
font-weight: 700;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
}
.btn-danger {
background-color: #e34c43;
border-color: #e34c43;
}
#gmap_canvas
{
filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
-webkit-filter: grayscale(90%);
filter: grayscale(90%);
filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
}
</style>
<div class="container mt-5">
<div class="row">
<div class="col-lg-8 col-md-12">
<div class="embed-responsive embed-responsive-16by9 " style="height:540px !important;">
<iframe id="gmap_canvas" class="rounded" src="https://maps.google.com/maps?q=university%20of%20san%20francisco&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<div class="col-lg-4 col-md-12">
<div class="px-3 bg-white pt-4 pt-md-0">
<img src="https://source.unsplash.com/600x400/?company" class="img-fluid rounded">
<div class="mt-4">
<address>
<strong class="text-muted">Address</strong><br>
1355 Market St, Suite 900<br>
San Francisco, CA 94103
</address>
<address>
<strong class="text-muted">Phone</strong><br>
+1800-555-2770
</address>
<address class="mb-5">
<strong class="text-muted">Email</strong><br>
<a href="mailto:#" class="text-secondary">[email protected]</a>
</address>
<a href="" class="btn btn-outline-danger btn-lg w-100 d-block">Send Message</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>


