<head>

<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin="">

<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>

</head>

<body>

<div class="map-wrapper">

<div id="map"></div>

</div>

</body>

<script>

var map = L.map('map').setView([59.118587, 11.402476], 13.3);

L.titleLayer('https://opencache.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={z}&x={x}&y={y}', {

attribution: '<a href="http://www.kartverket.no/">Kartverket</a>'

}).addTo(map);

var marker = L.marker([59.118587]).addTo(map);

marker.bindPopup("<a href="http://www.kartverket.no/">").openPopup();

</script>