<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<html>
<head>
<title>backgroundmap</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="embed-responsive embed-responsive-16by9 " id="googlemaps">
<iframe class="embed-responsive-item" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="col-xs-6 col-sm-4 my-card animated infinite pulse contactme"><h1 class="contact-me">contact me!</h1>
<h5><strong><span class="glyphicon glyphicon-map-marker"></span> line 1.......<br>
line 2..............<br>
line 3................<br>
</strong></h5>
<br>
<h5><strong><span class="glyphicon glyphicon-envelope"></span> your mailid@mail.com<br>
</strong></h5>
<br>
<h5><strong><span class="glyphicon glyphicon-earphone"></span> number<br>
</strong></h5>
<br>
<br>
<div class="card-container">
<h4><b>Check My social Media</b></h4>
<section>
<div class="media">
<div class="media-left">
<a href="#">
<img class="media-object" src="img/social-inside-facebook-icon.png" height="50" width="50" alt="...">
</a>
</div>
<div class="media-body">
<a href="">
<img class="media-object img-responsive" src="img/instalogo.png" height="50" width="50" alt="...">
</a>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
// The latitude and longitude of your business / place
var position = [19.2608346,72.9639459,15];
function showGoogleMaps() {
var latLng = new google.maps.LatLng(position[0], position[1]);
var mapOptions = {
zoom: 16, // initialize zoom level - the max value is 21
streetViewControl: false, // hide the yellow Street View pegman
scaleControl: true, // allow users to zoom the Google Map
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: latLng
};
map = new google.maps.Map(document.getElementById('googlemaps'),
mapOptions);
// Show the default red marker at the location
marker = new google.maps.Marker({
position: latLng,
map: map,
draggable: false,
animation: google.maps.Animation.DROP
});
}
google.maps.event.addDomListener(window, 'load', showGoogleMaps);
</script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>
.contactme{
margin-left: 70px;
padding-bottom: 100px;
width: 300px;
}
@media only screen and (max-width: 1080px) {
.contactme{
margin-left: auto;
padding-bottom: 70px;
}
}
@media only screen and (max-width: 1080px) {
.my-card{
margin-top: 15px;
position: absolute;
top: -500px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
background-color:mediumblue;
}
}
// The latitude and longitude of your business / place
var position = [19.2608346,72.9639459,15];
function showGoogleMaps() {
var latLng = new google.maps.LatLng(position[0], position[1]);
var mapOptions = {
zoom: 16, // initialize zoom level - the max value is 21
streetViewControl: false, // hide the yellow Street View pegman
scaleControl: true, // allow users to zoom the Google Map
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: latLng
};
map = new google.maps.Map(document.getElementById('googlemaps'),
mapOptions);
// Show the default red marker at the location
marker = new google.maps.Marker({
position: latLng,
map: map,
draggable: false,
animation: google.maps.Animation.DROP
});
}
google.maps.event.addDomListener(window, 'load', showGoogleMaps);