<html>
<head>
<title>Some Title</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="Leaflet/leaflet.css" />
<script src="Leaflet/leaflet.js"></script>
</head>
<body>
<div id="map"></div>
<script>
var map = L.map('map').setView([51.83, 107.62], 13);
L.tileLayer('d:/.users/tberezhnov/Maperitive/Tiles/{z}/{x}/{y}.png', {
minZoom: 12,
maxZoom: 17,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
}).addTo(map);
</script>
</body>
</html>