jda_m06/uf02/exercici_nasa/index.html
2022-02-16 16:13:08 +01:00

44 lines
2 KiB
HTML
Executable file

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<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>
<script src="https://unpkg.com/esri-leaflet@2.5.3/dist/esri-leaflet.js"
integrity="sha512-K0Vddb4QdnVOAuPJBHkgrua+/A9Moyv8AQEWi0xndQ+fqbRfAFd47z4A9u1AW/spLO0gEaiE1z98PK1gl5mC5Q==" crossorigin=""></script>
<script src="script.js"></script>
</head>
<body>
<div style="height: 600px; width: 1800px; margin: 25px auto 0;" id="map"></div>
<div style="margin: auto;">
<p>&lt=1000g <p style="color: green;">&#9673;</p></p>
<p>&gt1000g && &lt=100000g <p style="color: yellow;">&#9673;</p></p>
<p>&gt100000g <p style="color: red;">&#9673;</p></p>
<p>Undefined <p style="color: blue;">&#9673;</p></p>
</div>
<div class="w3-container" id="infoBar"></div>
<div style="overflow-y:auto; max-height:600px;" id="tableDiv" class="w3-container">
<table id="contentTable" class="w3-table-all w3-hoverable">
<thead style="position:sticky; top:0;">
<tr class="w3-dark-gray">
<th>#</th>
<th>Name</th>
<th>Class</th>
<th>Mass(g)</th>
<th>Year</th>
<th>Location</th>
</tr>
</thead>
</table>
</div>
</body>
</html>