Skip to content

Commit

Permalink
add style
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewis-Moten committed Apr 8, 2024
1 parent c3dd123 commit a365699
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,29 @@
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCbyT-nyl6DM7uOwBqMXkqWj8aQk89ydAw&callback=initMap&v=weekly"
defer
></script>
<style>
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 5px;
}
th {
text-align: left;
}
textarea {
width: 100%;
}
#MapArea {
background-color: #cccccc;
width: 100%;
border: 1px solid black;
height: 200px;
}
</style>
</head>
<body>
<h1>Geolocation</h1>
Expand Down Expand Up @@ -41,6 +64,6 @@ <h1>Geolocation</h1>
</tbody>
</table>
<textarea id="CoordinatesTextArea" rows="10" cols="70"></textarea><br />
<div id="MapArea" style="border:1px solid black; height: 200px;"></div>
<div id="MapArea"></div>
</body>
</html>

0 comments on commit a365699

Please sign in to comment.