This is possible by the Help of Google Map API...
Firstly Add a javascript library in ur webpage Head section that is
<script src="http://maps.google.com/maps/api/js?sensor=true" type="text/javascript">
</script>
After that add one division in body section.(with id="san" and set Height and width as you want...

<div id="san" Style="Height:500px;Width:500px;">San2.yed@gmail.com</div>
After that add following code:

<script>
      var initialLocation;
      var siberia new google.maps.LatLng(30.25037177.0416247);
      var MMU new google.maps.LatLng(40.69847032728747-73.9514422416687);
      var map;
      var infowindow new google.maps.InfoWindow();
      var mapOptions {
        zoom13,
        mapTypeIdgoogle.maps.MapTypeId.ROADMAP
      };
      
      if (navigator.geolocation{
        navigator.geolocation.getCurrentPosition(showPositiononError);
        // also monitor position as it changes
        navigator.geolocation.watchPosition(showPosition);
      else {
        onError();
      }
      
      function showPosition(position{
        map new google.maps.Map(document.getElementById("san")mapOptions);
        
        var lat position.coords.latitude;
        var lng position.coords.longitude;
        
        initialLocation new google.maps.LatLng(latlng);
        map.setCenter(initialLocation);
        infowindow.setContent(lat " " lng);
        infowindow.setPosition(initialLocation);
        infowindow.open(map);
      }
      
      function onError({
        if (navigator.geolocation{
          initialLocation MMU;
          contentString "Error: The Geolocation service failed.";
        else {
          initialLocation siberia;
          contentString "Your browser doesn't support geolocation.";
        }
        mapOptions.zoom 4;
        map new google.maps.Map(document.getElementById("san")mapOptions);
        map.setCenter(initialLocation);
        infowindow.setContent(contentString);
        infowindow.setPosition(initialLocation);
        infowindow.open(map);
      }
    </script>

If any kind of error occurred this map show the M.M.University(my college) or siberia location..... thanks for visiting....
Click Here for Checked...