2018-01-21 09:48:43 +01:00
|
|
|
<!DOCTYPE html>
|
2019-05-12 10:50:27 +02:00
|
|
|
<html><head><script type="text/javascript" src="/test.js" charset="utf-8"></script></head>
|
2018-01-21 09:48:43 +01:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<p>
<img src='emoji.png'><br>Local image</p>
|
|
|
|
|
|
|
|
<p>
<img src='dontexist.png'><br>Non existing local image</p>
|
|
|
|
|
2021-08-18 15:55:54 +02:00
|
|
|
<p><img src='http://www.briskbard.com/images/logo2.png'><br>Remote image</p>
|
2018-01-21 09:48:43 +01:00
|
|
|
|
2020-12-13 18:36:10 +01:00
|
|
|
<p><button onclick="myAlertFunction()">Show Alert box</button></p>
|
|
|
|
<p><button onclick="sendCustomReq()">Send request</button></p>
|
2019-01-17 14:53:02 +01:00
|
|
|
<p><img src='jupiter.png'><br>Bigger image</p>
|
2021-08-18 15:55:54 +02:00
|
|
|
|
|
|
|
<p>This is the Google Maps example.</br>Edit this HTML file to insert your Google Maps API key.</p>
|
|
|
|
|
|
|
|
<div id="googleMap" style="width:800px;height:400px;"></div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function myMap() {
|
|
|
|
var mapProp= {
|
|
|
|
center:new google.maps.LatLng(41.656264,-0.8790698),
|
|
|
|
zoom:15,
|
|
|
|
};
|
|
|
|
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY&callback=myMap"></script>
|
2019-01-17 14:53:02 +01:00
|
|
|
|
2018-01-21 09:48:43 +01:00
|
|
|
</body>
|
|
|
|
</html>
|