File size: 714 Bytes
229c0e8 a124b1a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <!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>
|