MapVN / index.html
CVNSS's picture
Update index.html
229c0e8 verified
raw
history blame contribute delete
714 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Map of Vietnam</title>
<!-- Thêm base URL cho huggingface -->
<base href="./" />
<link rel="stylesheet" href="./style.css" />
<script src="./script.js" defer></script>
</head>
<body>
<div class="container">
<div class="map-container">
<!-- Sửa path ảnh -->
<img src="./vietnam_map.jfif" usemap="#image-map" alt="Vietnam Map" />
<canvas id="mapCanvas"></canvas>
<map name="image-map" id="vietnam-map"> </map>
</div>
</div>
<div class="tooltip-box"></div>
</body>
</html>