Edit in JSFiddle

<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<div id="map" style="height:180px;"></div>
<script>
var map = L.map('map').setView([47.989922,-8.99121], 3);
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://www.openstreetmap.org/" target="_blank">OpenStreetMap</a>',
maxZoom: 18
}).addTo(map);
</script>