Snippets / html
Streaming Pulse Animation
htmlExperience a sleek, dynamic pulse animation as your page loads. A modern and engaging loader for a seamless user experience.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Streaming Pulse Animation</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #1e1e1e;
font-family: Arial, sans-serif;
}
.streaming-box {
display: flex;
gap: 10px;
}
.pulse {
width: 10px;
height: 50px;
background: #0070f3;
border-radius: 5px;
animation: pulse 1.5s infinite ease-in-out;
}
.pulse:nth-child(1) {
animation-delay: 0s;
}
.pulse:nth-child(2) {
animation-delay: 0.2s;
}
.pulse:nth-child(3) {
animation-delay: 0.4s;
}
.pulse:nth-child(4) {
animation-delay: 0.6s;
}
.pulse:nth-child(5) {
animation-delay: 0.8s;
}
@keyframes pulse {
0%, 100% {
transform: scaleY(1);
opacity: 0.8;
}
50% {
transform: scaleY(2);
opacity: 1;
}
}
</style>
</head>
<body>
<div class="streaming-box">
<div class="pulse"></div>
<div class="pulse"></div>
<div class="pulse"></div>
<div class="pulse"></div>
<div class="pulse"></div>
</div>
</body>
</html>
Nov 21, 2024
Show code
Digital Clock Using HTML, CSS, JS
htmlResponsive digital clock built with HTML, CSS, and JavaScript, offering real-time display with sleek styling.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<title>Digital Clock</title>
<style>
* {
margin: 0;
font-family: "Poppins", sans-serif;
padding: 0;
}
body {
overflow-x: hidden;
background-color: #01030c;
}
.clockswrap{
width: 100%;
height: 100vh;
position: relative;
}
main{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
user-select: none;
}
.clockbox{
background-color: rgb(255, 255, 255);
text-align: center;
padding: 10px;
border-radius: 10px;
}
#clock{
color: rgb(95, 95, 95);
font-weight: 500;
font-size: 30px;
letter-spacing: 2px;
}
#sClock{
color: white;
font-size: 30px;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 20px;
}
.hour{
font-weight: 500;
color: rgb(255, 102, 0);
font-size: 40px;
}
.minutes{
color: rgb(30, 154, 236);
font-size: 40px;
}
.seconds{
font-size: 15px;
align-self: flex-start;
}
</style>
</head>
<body>
<div class="clockswrap">
<main>
<div class="clockbox">
<h1>Date Time</h1>
<div id="clock">
</div>
</div>
<div id="sClock">
<p class="hour"></p>
<p>:</p>
<p class="minutes"></p>
<p class="seconds"></p>
</div>
</main>
</div>
<script>
const clock = document.getElementById('clock')
const body = document.querySelector('body'),
hour = body.querySelector('.hour'),
min = body.querySelector('.minutes'),
sec = body.querySelector('.seconds')
setInterval(() => {
const date = new Date()
const localDate = date.toLocaleString('en-US', {
hour12: false
})
clock.innerHTML = localDate
}, 1000);
setInterval(() => {
const d = new Date()
const h = d.getHours()
const m = d.getMinutes()
const s = d.getSeconds()
hour.innerHTML = h
min.innerHTML = m
sec.innerHTML = s
}, 1000);
</script>
</body>
</html>
Sep 17, 2024
Show code
Auto Type
htmlAuto Type tool built with HTML and JavaScript for creating dynamic, automated typing effects on web pages.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<div class="box">
<h1>I'm a <span class="type"></span></h1>
</div>
<script>
let type = new Typed(".type", {
strings: ["Programmer", "Designer", "Developer"],
typeSpeed: 30,
backSpeed: 30,
loop: true
})
</script>
</body>
</html>
Sep 17, 2024
Show code
Bangladesh Map
htmlInteractive Bangladesh Map with city tooltips built using HTML-SVG, CSS, and JavaScript. Explore cities with hover tooltips for detailed information.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bangladesh</title>
<style>
*{
margin: 0;
padding: 0;
}
.mapsvg-scrollpane {
width: 400px !important;
}
.svgmap-container{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
path:hover {
filter: contrast(5) !important;
}
.tooltip {
position: fixed;
display: none;
background: black;
border-radius: 7.5px;
color: white;
font-family: Arial;
font-size: 16px;
padding: 8px 15px;
border: none;
}
</style>
</head>
<body>
<div class="svgmap-container">
<div class="mapsvg-scrollpane"">
<svg xmlns:mapsvg=" http://mapsvg.com" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" mapsvg:geoViewBox="88.010067 26.635299 92.674283 20.740327"
preserveAspectRatio="xMidYMid meet" viewBox="0 0 437.80637 601.16034" style="transform: scale(1);">
<a href="#">
<path id="barrisalpath"
d="m 241.11233,469.42628 -1.67,2.4 -5.61,7.07 -0.62,-3.3 -0.75,-2.85 0.08,-0.67 -0.69,-2.63 0.94,-3.84 4.02,-4.3 0.36,-0.39 1.22,-2.49 2.42,-2.29 2.37,-0.45 0.31,6.18 -1.09,2.4 -0.19,3.99 -1.1,1.17 z m 6.69,-24.42 -0.44,-1.65 0.1,-4.08 -0.75,0.48 -0.57,2.66 -1.2,1.9 -0.31,2.85 2.45,-2.4 0.72,0.24 z m -5.7,-28.06 -0.29,-0.78 -3.93,-3.17 -0.7,0.45 1.87,4.26 3.52,2.19 0.26,-0.62 -0.1,-0.45 0.1,-0.73 -2.4,-0.92 1.44,-0.15 0.23,-0.08 z m -5.3,-10.69 0.74,-1.28 0.43,1.27 0.73,-0.1 0.16,-0.81 -1.74,-2.17 -2,0.65 0.03,1.99 1.64,-0.31 -0.54,0.77 0.55,-0.01 z m 9.44,46.97 -0.34,-3.33 -3.1,0.39 -1.69,5.2 3.44,-0.56 1.69,-1.7 z m -13.26,33.68 1.59,-1.26 -0.14,-0.86 -0.74,-1.18 -0.76,0.65 0.05,2.65 z m 6.09,-9.04 0.81,-0.41 1.09,-1.21 -1.15,-0.33 -2.26,2.06 1.51,-0.11 z m -43.02,8.52 -2.42,2.23 -1.92,-0.16 -2.74,-2.19 0.64,-3.85 -0.62,-0.42 0.68,-2.13 3.59,-2.07 0.66,-1.26 -0.15,-2.34 1.59,-4.03 4.6,-4.1 1.65,-2.95 2.83,0.84 2.57,-1.4 0.9,-4.37 1.31,-2.64 -0.83,-3.4 -1.04,-0.28 0.05,-3.63 -1.25,-4.5 0.31,-2.32 0.66,-0.73 2.28,0.53 1.22,-0.56 1.2,-2.2 0.62,-4.91 2.68,-2.35 0.65,-3.39 3.83,-0.17 0.96,-1.34 0.03,-1.36 1.34,0.83 3.79,0.73 1.07,2.63 1.87,-1.6 -1.38,-3.7 3.34,-2.6 -1.4,-4.26 5.88,-0.94 5.45,3.78 0.75,1.14 0.57,2.94 1.64,2.72 -1.12,2.03 -0.52,-1.17 -0.03,4.17 3.95,4.98 -2.63,9.87 -1.17,1.93 -4.99,4.79 -1.43,3.61 -1.69,1.17 -0.58,1.3 -5.97,7.6 -3.97,-1.12 -1.18,0.49 -4.07,3.3 -2.52,6.87 -1.94,-1.19 -2.04,1.69 -0.71,2.24 -1.46,-0.8 -1.09,-1.64 -2.3,-0.97 -0.21,0.53 -2.93,0.62 -0.87,-0.7 -1.04,0.36 -1.82,2.82 1.04,2.31 -2.5,0.17 -0.63,0.87 0.23,1.68 -1.27,1.97 z m 44.46,-101.37 0.75,0.33 1.62,0.15 0.36,-1.97 -2.5,0.84 -0.23,0.65 z m 1.32,-9.36 -2.09,-4.28 -0.61,-1.23 -2.7,1.06 -0.76,-0.29 0.49,-0.29 2.57,-1.11 0.02,-0.84 -1.9,-0.28 -1.48,0.74 -2.71,2.32 -0.17,0.1 -4.27,1.29 -1.87,1.32 3.1,0.68 2.74,1.84 1.11,0.8 0.57,-0.61 3.47,7.03 2.75,-0.49 1.93,-1.66 0.47,-1.4 -0.66,-4.7 z m -49.76,101.18 -3.93,-0.58 -1.78,-1.73 -0.83,-3.44 3.81,-1.63 0.7,-1.76 -0.47,-3.71 0.42,-2.32 3.67,-3.21 -1.04,-1.68 -3.51,-1.79 3.88,-1.43 1.25,-1.26 0.7,-3.83 1.77,-0.87 0.76,-1.65 -0.08,-2.35 -1.43,-3.75 1.82,-1.73 2.07,-3.6 3.42,-3.09 0.03,-2.74 1.77,-3.08 0.18,-0.76 1.48,-1.43 -0.68,-1.21 -1.93,0.45 0.52,-3.22 1.43,-2.94 -1.85,-1.65 -0.75,-3.2 3.05,-1.21 2.84,0.7 2.37,-0.95 1.38,0.34 1.2,-2.66 3.12,0.17 1.01,1.6 0.78,-0.08 2.97,-5.22 1.34,-0.65 -0.29,-2.86 1.12,-0.1 0.9,1.4 2.13,-0.48 0.6,-0.87 -0.96,-1.21 1.07,-1.21 2.07,0.52 2.95,2.89 0.94,2.25 -1.02,0.94 1.01,-0.21 0.4,10.42 -5.86,1.6 1.13,4.4 -2.44,1.96 -0.23,1.04 1.09,2.77 -1.08,1.1 -1.19,-1.97 -3.35,-0.62 -1.59,-1.01 -0.81,0.25 -0.44,2.16 -1.26,0.62 -1.86,-0.5 -1.48,0.48 -0.34,2.71 -3.35,4.1 -0.83,5.5 -0.89,0.35 -1.2,-0.53 -2.39,0.9 -0.7,1.18 0.92,9.98 2.03,3.72 -1.5,2.67 -0.83,3.89 -4.66,0.18 -2.82,3.72 -3.58,2.71 -2.01,3.63 -0.86,4.68 z m 40.09,-79.12 -0.97,-1.77 -1.21,-0.06 0.15,1.31 1.82,1.57 0.21,-1.05 z m 14.55,27.64 -2.26,1.15 -2.29,4.48 4.87,5.57 -0.36,-3.83 0.6,-3.98 -0.03,-0.56 0.34,-2.18 -0.87,-0.65 z m 1.31,51.89 -2.66,4.4 -1.18,4.07 2,-0.33 1.39,-0.13 2.33,-2.93 1.15,-1.32 1.49,-3.84 -2.29,-0.17 -2.23,0.25 z m -3.95,-3.24 -1.92,-2.36 -1.63,1.58 -0.63,2.15 1.7,0.48 0.26,-0.01 1.68,0.99 1.37,-1.2 -0.83,-1.63 z m -4.4,4.28 -3.17,0.54 -2.05,2.94 -0.07,1.55 0.77,2.26 5.35,0.69 -0.13,-1.31 1.2,-1.45 1.44,-4.86 0.37,-1.16 -1.77,-1.29 -1.94,2.09 z m 16.81,3.61 -1.5,1.35 -0.99,2.3 0.35,3.27 1.31,-0.17 2.45,-4.99 -0.74,-1.45 -0.88,-0.31 z m 6.1,1.65 -1.45,0.14 -1.53,3.01 1.36,-0.03 -0.11,-1.11 0.97,-0.84 0.09,0.94 0.58,0 0.91,-0.8 -0.19,-0.72 -0.63,-0.59 z m -14.47,-63.63 -2,-0.84 -2.19,0.42 -0.96,1.29 0.47,1.54 1.33,0.78 0.81,1.82 2,0.39 -0.21,-2.69 -0.44,-1.43 0.42,-0.64 0.77,-0.64 z m 10.91,-0.22 8.99,11.16 -0.48,3.23 -1.97,3.54 0.08,10.43 -1.67,11.32 -1.09,2.93 -2.4,3.86 -4.35,3.24 -4.08,4.57 -3.79,1.12 -2.27,0.2 -1.18,-1.26 -1.8,-2.41 -0.26,-1.58 2.16,-6.7 0.42,-7.52 2.36,-2.87 2.55,-6.19 0.63,-5.67 -0.94,-3.78 -0.55,-16.7 -1.46,-2.2 -2.95,-0.95 -0.36,0.46 -1.6,-0.72 -2.57,-3.17 -3.63,-1.82 1.03,-1.69 2.88,-1.76 0.16,-1.78 -0.94,-3.06 -0.67,-0.44 -1.71,-0.11 0.13,-3.69 -0.42,-0.56 -0.85,-0.73 -0.03,4.21 -1.04,0.55 -2.55,-3.72 -0.59,-3.06 -1.19,-1.18 -0.81,0.23 -0.72,-2.29 -1.02,0.23 -1.2,1.66 -0.52,-0.03 0.51,1.04 0.47,1.46 -1.78,1.95 1.07,1.39 -1.65,1.01 -0.75,-1.74 -1.33,-0.14 -0.52,0.93 0.18,2.61 -0.99,0.65 -3.2,5.3 -1.12,-1.63 -3.41,-0.39 -1.27,2.83 -1.72,-0.42 -1.9,1.04 -2.81,-0.84 -3.36,1.32 0.73,3.79 1.85,1.43 -1.25,1.74 -0.91,4.15 0.62,0.67 1.98,-0.45 0.21,0.64 -1.64,1.32 -1.82,3.73 -0.08,2.77 -2.97,2.32 -2.68,4.45 -2.11,1.99 0.03,1.6 1.33,2.24 -0.73,2.4 -1.9,2.74 -0.62,3.69 -3.67,0.89 -1.07,0.98 0.34,2.54 3.65,1.37 -2.86,1.68 -1.38,1.82 -0.24,1.73 0.94,2.85 -3.66,3.14 -1.12,2.14 1.6,6.6 -1,1.39 -1.81,0.65 -2.04,-1.14 -0.5,-4.58 -1.4,-2.2 -1.54,-4.89 1.01,-6.68 -3.09,-8.9 -0.91,-5.52 5.01,-11.57 5.15,-4.38 1.16,-5.4 2.68,-0.15 -0.29,-0.66 -1.82,-0.28 -2.47,1.24 0.84,0.47 -0.44,3.33 -7.34,6.38 -2.23,-2.31 0.89,-2.79 0.09,1.23 3.04,-1.83 2.19,-0.45 0.81,-1.19 -1.07,-1.17 -2.18,0.39 -2.04,-0.6 -0.6,-1.28 0.67,-1.6 2.49,-0.05 4.37,1.17 -0.04,-1.33 -4.05,-0.26 2.89,-3.67 1.05,-4.22 -0.95,-1.05 -3.32,-0.48 0.83,-3.94 -3.23,-1.76 0.83,-1.72 1.36,1.52 0.88,-0.41 1.29,-1.16 -0.77,-0.9 -2.34,-0.8 -2.85,0.54 -0.91,-0.86 4.07,-2.93 2.19,0.49 0.28,-2.98 -1.89,0.13 0.12,-1.4 -0.89,-0.9 3.39,-0.6 -0.48,-1.57 -1.83,-0.22 1.91,-2.22 1.06,-0.68 -0.91,-3.77 2.34,1.1 5.04,-1.55 1.63,-6.28 2.26,-0.52 0.14,-3.46 1.06,-0.06 2.42,-3.51 2.67,-0.15 0.79,-3.22 0.73,-0.68 -0.74,-0.59 1.63,-0.48 0.97,-1.42 2.81,1.12 2.17,-1.46 1.83,2.34 -0.41,3.56 0.51,0.48 -0.9,1.87 0.88,2.21 0.68,-1.02 1.6,0.01 -0.56,0.84 0.37,0.65 1.63,-1.56 1.04,0.63 3.65,-0.29 0.23,-2.59 -1.55,-3.05 0.87,-2.38 4.82,-0.2 4.84,1.59 0.21,0.68 -1.17,1.09 -2.49,0.55 3.72,0.75 -2.4,0.92 5.35,2.23 0.7,0.39 4.01,3.15 2.08,4.38 -3.38,2.78 0.03,0.51 -1.61,3.06 0.54,2.19 0.92,0.58 0.13,0.65 1.33,-1.74 -1.98,-2.3 2.71,-3.03 0.18,-0.87 1.38,-0.67 9.11,1.71 3.1,2.67 1.61,2.61 -1.07,0.96 -2.03,0.45 -5.75,-0.45 -4.24,1.8 -2.71,-0.98 -1.04,0.36 2.43,0.69 1.04,1.68 2.51,-2.16 3.18,-0.48 0.68,0 0.34,0 2.63,0.51 1.64,0.91 4.74,14.58 2.11,2.3 2.42,1.32 1.55,6.18 z m -44.87,56.51 1.13,1.09 -0.31,2.03 -3.43,7.8 -0.57,3.48 -3.45,2.94 -2.43,1.14 -2.95,-0.06 -4.89,-1.58 -2.35,-2.1 -0.02,-2.2 1.22,-0.38 1.71,-3.55 -0.06,-2.54 2.01,0.05 0.78,-0.6 -0.9,-2.69 2.07,-2.52 1.02,0.74 3.93,-0.96 1.74,1.22 0.22,1.22 0.54,-0.15 2.08,1.29 1.11,-3.13 1.8,-0.54 z m 10.1,-0.88 -0.15,-1.82 -3.88,2.91 -4.77,9.99 0.45,2.5 0.95,1.08 3.35,-0.5 1.66,-1.81 -1.81,-4.67 4.2,-7.68 z m -0.67,-5.55 3.29,-2.78 -1.57,-0.48 -1.75,-0.55 -2.68,2.53 -2.25,4.08 0.19,1.85 -0.16,1.1 4.71,-5.2 0.22,-0.55 z m 2.42,16.68 2.71,-0.66 0.89,-1.26 0.39,-1.1 -3.51,1.47 -0.48,1.55 z m 1.29,3.56 -0.22,1.28 2.69,-0.56 -0.23,-2.2 -2.24,1.48 z m 4.3,-18.41 -1.27,-2.46 -4.62,2.52 -0.25,0.32 -0.94,1.16 0.38,2.37 -3.06,5.46 -0.88,1.82 0.49,3.14 1.66,1.22 0.83,-0.09 0.95,-1.89 5.16,-2.42 2.71,-3.14 -1.16,-8.01 z m 3.31,18.99 0.11,-1.34 -0.77,-0.28 -2.43,1.38 -0.53,1.86 0.45,1.2 1.37,0.11 2.94,-1.87 0.26,-0.61 -0.63,0.45 -0.77,-0.9 z m 2.76,-3.44 -1.66,-1.12 -1.88,2.1 3.94,1 0.6,-0.4 -0.42,-1.05 -0.58,-0.53 z"
title="Barisal" id="BD-A" class=" mapsvg-region"
style="fill: rgb(18, 146, 186); stroke-width: 1.50535px;"></path>
</a>
<a href="#">
<path id="chittagongpath"
d="m 270.13233,436.57628 -0.31,3.81 -0.63,0.57 -0.38,-0.4 0.78,-2.27 -0.75,-0.56 -0.26,-0.81 1.22,-2.41 0.33,2.07 z m 2.38,8.41 0.88,-0.57 1.17,-3.22 -0.62,-2.27 -2.08,5.15 0.65,0.91 z m 5.74,-7.85 0.88,-1.58 0.03,-1.47 -1.17,-1.82 -1.9,1.09 -0.05,2.57 1.12,1.26 1.09,-0.05 z m 2.32,8.62 -1.72,-6.49 -1.38,0.42 -0.03,6.27 -7.52,19.23 1.22,1.31 1.17,1 0.83,-0.33 0.6,-2.85 4.14,-6.4 1.85,-4.56 0.84,-7.6 z m 5.08,-6.74 -1.2,-1.93 -2.29,2.02 1.33,1.76 2,-1.06 0.16,-0.79 z m -1.9,5.34 -0.57,-1.51 -1.17,1.09 0.78,2.85 0.96,-2.43 z m -4.07,-15.5 -0.31,0.98 1.32,7.28 1.25,1.01 1.64,-1.68 0.67,-2.36 0.64,-3.97 -2.6,-1.73 -2.61,0.47 z m 1.49,13.07 0.68,1.71 1.28,-1.29 -1.43,-1.54 -0.53,1.12 z m -27.32,-61.27 -0.41,-0.68 -2.46,-3.08 -0.67,-0.34 -1.18,0.82 2.52,4.1 0.23,0.2 2.81,4.58 0.37,-0.39 0.39,-1.15 -1.59,-3.71 -0.01,-0.35 z m -10.24,-27.84 0,-0.02 -0.14,0.17 0.14,-0.15 z m 33.92,78.92 -0.23,-2.07 -1.74,0.76 0.68,1.46 1.29,-0.15 z m 4.99,34.53 -2,-0.78 -0.83,0.45 -1.64,3.55 0.34,2.1 1.01,0.89 2.13,-1.17 1.48,-1.98 -0.36,-0.39 0.68,-1.4 -0.81,-1.27 z m -9.99,-42.9 0.31,1.37 2.11,0.36 0.6,0.06 3.64,-1.37 -2.39,-3.56 -1.59,0.45 1.25,-0.87 -3.33,-2.83 -4.37,-0.39 -1.93,-1.32 -1.46,1.32 0.08,0.73 6.56,6.78 0.52,-0.73 z m 30.61,8.54 0.47,1.35 1.3,0.81 0.7,-2.16 -0.91,-1.12 -1.56,1.12 z m 12.57,-25.84 -0.31,-1.06 -1.33,-1.63 -3.38,-1.77 -2.52,1.54 1.15,4.8 2.47,3.08 2.89,0.87 2.27,1.65 1.33,-3.78 -0.05,-1.66 -2.52,-2.04 z m -8.59,5.58 -1.43,-0.05 -0.55,-0.33 -0.73,1.73 0.88,3.64 1.77,-2.8 0.06,-2.19 z m 0.18,7.38 -1.41,2.72 -0.57,1.79 1.02,1.12 3.44,-4.31 0.29,-1.82 -0.83,-0.7 -1.94,1.2 z m 22.88,2.6 -5.99,-7.93 -1.64,-1.15 -2.4,1.35 0.34,0.67 -1.22,-0.14 -0.62,1.43 0.63,0.51 -0.75,0.25 1.64,7.73 1.69,4.48 3.41,5.88 2.79,1.23 2.21,-0.25 3.31,-1.51 0.76,-1.82 -0.39,-3.02 -3.77,-7.71 z m 33.78,62.9 -1.61,-2.24 -2.68,2.19 -0.56,2.54 1.13,5.08 -0.86,2.19 0.16,3.08 -0.91,1.83 0.54,1.46 0.71,-0.12 4.53,-12.24 -0.45,-3.77 z m 70.95,54.44 -2.69,-13.81 -1.7,-20.35 0.75,-10.7 0.86,-1.93 -0.56,-1.21 1.33,-4.75 -1.34,-5.6 -0.08,-6.01 -1.17,-3.78 0.56,-2 -3.24,-7.19 1.61,-1.06 2.09,1.85 0.37,-5.19 -0.86,-0.96 -0.66,-7.51 -1.08,-3.24 0.13,-3.18 -2.05,-7.14 -1.2,-12.97 -1.05,-3.39 -0.95,-0.83 0.85,-1.66 -0.06,-2.56 -1.2,-7.27 -2.13,-6.01 -1.13,-1.84 -1.01,-0.87 0.49,-1.05 -0.83,-1.16 0.01,-1.42 -1.75,-2.55 0.53,-0.93 -0.02,-1.06 -0.01,-1.29 -0.57,-1.61 -1.01,-2.19 -1.37,0.67 -1.32,-2.63 -1.23,-0.32 -0.85,-1.57 -1.98,-0.33 0.94,-5.27 0,-5.17 0.77,-2.04 -0.92,-2.96 -1.69,-1.88 0.72,-2.22 -0.81,-0.97 0.65,-2.26 -0.19,-2.45 -0.69,-0.82 -0.1,-4.61 4.45,-0.87 -0.77,-2.36 -1.07,-1.97 -0.12,-2 -1.39,-1.46 1,-2.77 -0.29,-1.25 -0.57,-0.87 -0.49,-0.8 -0.87,-0.24 0.18,-2.82 -0.87,-0.58 -0.21,-1.98 -0.88,0.31 -0.16,-2.52 -0.1,-0.86 -0.52,-1.44 -0.85,-1.17 -0.02,-3.51 -0.97,-0.93 0.49,-2.12 -1.52,-3.4 -0.77,-0.8 -0.02,-1.99 0.64,-0.99 -1.75,-0.49 1.26,-6.53 -2.41,-3.45 -1.63,0.16 -0.97,1.31 0.51,2.23 -0.82,2.19 -1.68,1.19 -0.69,-0.57 0.45,-3.15 -1.35,-1.2 -1.57,-0.36 -0.52,-3.16 -0.86,-0.09 -2,1.01 -4.18,5.7 -1.43,-0.07 -0.34,2.37 -1.53,0.94 -3.29,-1.73 -1.16,0.38 -3.7,-7.3 -2.02,0.21 -0.45,2.91 -1.41,1.76 1.35,6.5 -0.53,3.21 1.21,0.77 -0.27,4.19 0.65,0.88 -0.77,0.89 1.37,1.61 0.09,2.23 -3.12,1.35 0.5,2.55 -0.51,0.66 -3.59,-0.39 -5.26,4.19 -0.86,1.6 0.55,0.42 -3.35,4.23 -3.5,7.6 0.39,1.81 1.6,1.68 -0.07,1.91 0.75,1.4 0.59,3.86 0.72,0.78 -0.12,2.05 0.82,0.81 0.13,2.02 0.06,1.67 0.17,0.81 -0.9,0.86 -3.26,0.13 -0.46,2.33 -2.28,3.59 -2.39,2.1 -2.55,-1.35 -0.92,1.49 -1.22,0.01 -1.72,0.12 -0.41,0.36 -3.13,2.36 -1.35,0.38 0.67,-1.75 -1.36,-0.24 -1.32,1.27 -1.93,-1.34 -0.02,-1.34 -1.28,-0.51 0.41,-2.13 0.09,-1.82 -1.47,-0.09 0.27,-1.59 -0.2,-1.18 -0.75,-1.75 0.38,-0.78 -1.85,-1.87 0.75,-0.88 -1.37,-1.31 0.64,-0.95 -0.5,-1.42 -0.61,-1.54 -0.52,-0.76 -0.88,-2.6 -0.27,-1.35 -2.56,-0.32 1.52,-1.03 -0.76,-1.3 -1.41,-0.5 0.75,-1.14 -3.9,0.04 -1.02,1.16 -0.3,1.69 -0.77,0.28 -0.65,4.46 0.25,2.73 1.74,4.64 -0.19,1.22 0.4,1.15 0.96,0.42 -0.05,2.02 -1.85,0.75 -2.31,-1.24 -2.25,-3.66 -1.34,-5.15 -0.84,-0.68 -0.45,-8.41 -0.02,-1.33 -0.83,-2.12 0.57,-0.75 -1.51,-0.86 1.42,-1.18 -0.53,-1.23 -1.75,-0.68 0.49,-2.05 1.17,-0.36 1,-1.78 -2.41,0 -0.84,-0.97 -0.41,-0.63 -0.41,-3.87 -2.09,-3.28 -0.57,-4.19 -1.53,-0.49 0.15,-0.87 -1.12,-1.11 -1.9,-0.38 -0.25,-0.66 1.3,-2.45 -1.74,0.04 -0.05,-1.8 -1.81,-2.04 0.23,-0.81 -1.45,-0.51 -0.5,-7.31 1.4,1.36 1.79,0.19 0.34,0.85 1.03,-0.98 0.02,-3.15 -0.85,-0.5 -4,0.12 -0.36,-1.89 0.56,-3.01 1.12,-1.29 2.17,-0.12 1.76,0.32 0.97,1.02 0.89,-2.98 -0.19,-2.81 2.39,-4.34 -2.35,-4.44 -0.03,-1.66 1.62,-1.41 -1.33,-1.56 3.85,0.24 -0.95,-2.28 0.54,-1.53 1.11,-1.99 0.54,1.54 0.95,-0.48 0.63,-2.64 -0.91,-0.46 0.12,-1.57 1.01,0.12 0.49,-2.41 -0.94,-1.99 -1.48,-0.18 0.33,-3.59 -1.19,0.28 -0.93,-0.69 0.27,-1.33 1.85,-0.67 -1.92,-0.66 0.02,-1.63 -0.85,-0.22 1.34,-1.98 0.33,-1.81 2.3,-1.11 1.03,0.35 -0.16,-1.59 -2.85,0.9 -0.66,-0.62 0.76,-1.76 1.12,0.58 0.19,-1.2 0.82,0.33 0.93,-1.05 0.79,0.02 -0.02,-3.04 -1.29,-0.65 -1.03,0.48 -1.25,1.69 -0.34,1.63 0.46,0.56 -1.09,0.21 -7.35,-1.4 -1.98,-2.57 -3.39,2.45 -5.44,0.12 -0.4,2.07 1.42,0.98 -0.18,0.45 -5.06,-0.31 -1.97,2.88 -3.11,1.95 1.53,2.6 4.27,2.39 0.89,2.07 -1.02,1.94 -5.64,3.81 -1.53,2.86 0.4,4.1 -2.38,1.95 0.22,2.56 -2.42,1.98 -0.75,3.27 -2.01,1.68 -1.07,-0.06 -2.05,-1.94 -2.38,1.23 -5.02,-0.29 -1.95,0.89 -0.62,1.36 1.06,1.87 0.06,2.77 -3.45,4.13 -0.6,1.65 0.15,1.68 1.81,2.88 -0.83,2.85 -2.02,0.53 -2.98,-1.74 -3.32,0.62 -1.53,5.51 2.59,0.46 1.07,2.46 -1.29,0.27 -0.81,1.4 3.66,1.65 2.45,5.46 -2.48,1.57 -3.79,-1.47 -2.16,1.29 -2.67,0.35 -5.05,10.41 1.16,3.36 2.65,1.86 -0.52,3.17 3.68,8.43 2.26,-0.23 0.11,5.24 1.35,4.62 -1.33,3.27 -0.31,7 0.6,2.7 1.9,2.87 1.12,-1.18 1.33,0.06 2.47,3.5 2.27,5.13 2.13,2.56 -0.03,0.11 1.95,3.93 -0.47,5.03 3.88,7.58 2.55,3.42 0.91,0.11 0.63,0.45 2.63,0.53 1.02,1.88 9.18,6.06 7.01,8.12 3.67,-4.06 1.48,0 1.27,0.48 0.96,-0.62 0.5,0.34 0.39,0.48 -0.7,0.87 1.09,0.48 5.88,-3.76 1.43,0.51 1.75,-1.54 -1.85,-4.51 1.67,-2.16 1.87,-0.53 -0.86,-0.59 0.1,-1.32 -1.82,-2.33 -1.61,0.25 -0.52,-0.51 1.2,-0.03 -0.91,-2.08 -2.11,-0.11 -0.91,-2.05 -1.4,-0.17 0.26,-0.42 0.89,0.03 1.61,1.91 0.94,-0.9 0.76,0.37 2.21,2.16 3.83,-4.6 0.78,-0.37 3.12,-0.7 3.23,0.34 1.07,-0.45 0.23,-1.15 -2.57,-0.82 1.87,-1.29 2.27,1.63 0.18,1.35 1.07,0.76 1.2,-2.55 -0.91,-1.35 0.18,-1.07 -1.35,-0.87 1.74,-3.43 0.13,1.55 -1.07,1.43 2.84,2.81 0.68,3.37 -0.03,0.59 0.96,2.36 7.83,4.91 4.09,4.68 0.73,1.77 6.35,6.45 3.77,5.66 0.89,3.64 1.41,1.99 -0.36,0.73 1.04,1.29 2.66,11.7 -0.34,2.35 3.12,4.64 0.93,-0.68 0.6,0.32 -0.08,3.49 1.67,6.01 1.09,2.01 0.55,0.22 0.89,-0.94 0.36,0.83 -0.08,2.65 1.27,4.22 0.26,2.51 -0.81,1.9 1.52,2.51 2.52,8.83 0.35,3.46 -0.59,3.78 -5.15,14.16 0.64,1.51 1.45,1.46 0.62,-0.11 0.32,-0.75 0.67,0.89 -0.86,1.29 0.11,1.38 -0.7,0.08 0.08,2.29 -0.67,1.29 0.75,1.1 1.75,-0.56 -0.98,1.23 -0.95,-0.29 -0.59,0.73 0.16,0.7 1.1,0.81 -1.02,0.76 -1.31,-0.62 -0.89,1.54 0.3,0.7 3.44,4.09 1.42,0.65 0.48,-0.91 -1.02,-0.7 0.91,-0.4 -0.51,-0.89 0.75,-0.38 0.64,0.56 2.82,0.03 2.39,-0.81 1.21,-12.12 0.67,-1.56 1.22,4.51 -0.32,0.51 -1.08,1.83 0.6,5.93 -1.13,3.15 -1.31,1.32 -0.51,-0.1 -1.21,1.28 -0.48,-0.3 0.04,1.23 6.22,8.45 2.86,6.92 0.16,11.99 12.65,15.89 1.67,5.92 2.39,5.07 4.58,6.99 3.44,7.92 2.16,1.91 0.62,-1.58 -2.16,-8.44 -1.9,-4.67 -2.58,-2.68 -0.96,-3.47 0.1,-2.86 -1.09,-5.57 1.2,-2.83 -3.46,-4.13 -0.29,-2.55 0.27,-0.58 -1.92,-0.74 -1.62,-3.32 1.7,-3.9 0.52,0.35 1.46,-1.85 -2.29,-5.93 -0.51,-3.32 3.14,-2.84 2.23,-0.66 -0.09,-2.96 1.16,-0.81 0.25,-2.74 1.82,-0.03 1.4,1.04 1.48,-0.45 2.01,-3.7 2.35,-1.78 2.07,0.19 3.13,4.28 0.66,2.74 -0.43,2.17 0.9,1.57 6.16,1.85 0.97,-0.38 0.13,-1.4 1.53,0.31 1.82,-1.14 1.17,0.75 1.26,5.03 1.89,4.03 0.24,2.82 1.7,0.19 1.49,-2.19 4.08,-2.72 -2.59,-6.87 z m -149.03,-70.15 -0.49,3.38 3.07,-2.65 -0.44,-1.45 -2.14,0.72 z m 19.8,-38.97 1.31,1.67 0.97,0.01 0.15,-0.64 -1.62,-1.71 -0.81,0.67 z m -11.66,-6.51 0.53,-1.99 -0.37,-0.16 -1.23,-0.05 -0.45,-0.39 -1.12,0 -2.19,2.14 -1.01,2.33 -0.08,3.08 0.94,0.03 3.54,-4.12 1.44,-0.87 z m 2.09,18.76 -1.33,-4.25 -1.95,-2.02 -0.13,-1.57 -5.65,-2.6 0.1,6.13 -0.62,3.72 0.34,8.25 -1.54,5.95 -3.54,7.52 0.63,1.28 3.49,2.35 4.24,-3.91 3.07,-1.42 0.18,-1.54 0.57,0.17 1.12,-1.98 1.04,-0.56 0.21,-2.26 0.65,-0.05 1.67,-5.09 -0.23,-4.28 -2.32,-3.84 z m 0.99,-19.18 2.06,0.93 0.21,-1.46 -1.04,-0.2 -1.23,0.73 z m -2.55,1.23 -2.73,3.42 2.32,0.06 2.92,-1.63 1.72,-1.88 -1.74,-1.06 -2.49,1.09 z"
title="Chittagong" id="BD-B" class=" mapsvg-region"
style="fill: rgb(219, 143, 58); stroke-width: 1.50535px;"></path>
</a>
<a href="#">
<path id="dhakapath"
d="m 236.80233,364.18628 2.08,1.1 -0.05,1.33 -1.02,0.24 0.79,0.85 -1.71,0.08 -2.46,0.99 0.3,-1.21 1.46,-2.28 0,0 0.61,-1.1 z m 64.18,-129.8 1.29,0.25 2.15,-1.46 -1.62,-2.77 -0.97,0.21 -0.83,-0.64 -0.17,-1.35 2.07,0.07 0.3,-0.84 -1.34,-4.78 -1.42,-0.08 0.81,1.34 -1.63,-0.62 -1.64,2.25 -0.17,-1.51 1.02,-0.53 -2.49,-0.68 -1.03,0.78 -0.63,-0.32 2,-2.43 0.77,1.43 0.68,-0.63 2.49,-2.98 1.88,-4.58 -3.36,-1.78 0.64,-0.91 -0.3,-1.24 -2.15,-0.86 -0.24,-1.48 1.78,0.9 0,-0.86 0.89,0.02 0.19,-1.69 1.42,-0.03 0.82,-0.88 -1.02,-1.5 1.79,-0.31 0.06,-1.57 -1.85,-0.81 0.84,-0.99 -0.46,-1.61 -1.54,1.55 -2.46,-1.57 -1.7,0.86 -0.35,-0.74 -1.62,-0.02 1.02,-0.77 -0.4,-1.36 0.69,0.36 0.38,-0.74 -0.69,0.05 0.03,-0.73 -1.2,-0.15 -0.18,-0.59 0.92,-0.62 1.38,0.29 -0.12,-0.93 1.3,-0.93 -1.39,-0.84 1.41,-2.26 -0.17,-1.88 -1.54,-0.91 -1.01,1.4 0.29,0.81 -1.33,1.04 1.25,1.51 -1.49,0.22 -1.51,-2.36 0.59,-1.99 0.83,-0.65 -0.4,-0.8 -0.98,-0.04 -1.15,-3.82 -2.12,-1.64 -3.46,-0.54 -1.25,2.26 -0.9,-0.21 -0.44,-1.08 -1.3,0.4 -1.08,-2.19 -3.36,-0.08 -0.11,-2.55 -0.63,0.05 1.95,-0.87 0.37,-1.25 -1.05,-1.43 -1.57,-0.39 0.34,-3 -1.25,-1.68 0.52,-0.86 2.35,-0.99 -2.93,-0.86 -0.2,-3.38 1.38,-0.33 1.18,1.06 1.5,-0.48 -0.26,-1.86 -1.96,-1.81 0.6,-1.13 -0.25,-2.88 1.64,-0.72 -0.52,-1.45 -3.62,0.85 -4.14,-0.38 -3.01,0.87 -3.16,-1.04 -0.88,-0.6 -2.35,-1.26 -1.47,0.73 -0.49,1.09 -1.69,0.78 -0.67,0.44 -1.81,-1.25 -1.45,1.16 -1.57,-1.13 -1.37,-0.04 -0.75,-1.95 -1.56,0.37 0.05,0.89 -2.14,0.1 -0.91,-0.62 -3.13,0.79 -6.19,-0.44 -0.09,0.54 -5.26,1.81 -0.68,0.8 -3.55,-1.6 -3.27,-0.44 -3.56,-3.01 -2.2,0.4 -7.18,-1.77 -1.2,0.35 -5.03,-2.12 -5.59,-0.3 -5.19,-3.71 -2.38,-0.42 -2.44,-1.59 -2.09,0.01 -1.38,-2.13 -1.67,0.76 -0.45,-0.86 -1.11,0.35 -2.39,-0.83 -2.79,2.23 -4.42,-0.89 1.23,-1.5 -1.12,-0.97 0.14,-1.5 -1.35,-2.22 -0.07,-3.06 0.77,-2.9 -5.36,-1.65 0.06,0.14 0.35,1.3 0.9,0.59 -0.28,2.15 -1.63,0.89 -1.11,-0.04 -0.25,0.11 -2.44,2.46 2.97,7.28 -0.63,2.51 0,0.32 0.59,1.46 -0.96,1.23 -0.21,0.08 -3.83,0.37 -2.45,4.47 -0.05,1.63 -2.11,2.88 0.15,3.1 -0.06,0.27 -1.14,2.06 0.66,1.05 0.33,0.25 0.33,-0.16 0.1,0.17 0.23,2.51 -0.71,0.98 1.08,5.15 0.2,0.59 1.35,2.7 -0.03,1.08 -0.47,2.36 1.13,1.75 -0.17,0.14 -0.45,0.01 -0.6,0.37 -1.09,0.74 0.04,0.58 2.09,5.53 2.03,2.06 2.5,1.3 1.06,-0.13 0.26,0.58 -1.48,0.2 -0.84,1.11 -0.15,0.77 1.29,1 0.28,0.12 0.6,-1.11 1.48,1.21 1.2,-1.05 0.95,0.88 0.1,2.13 0.62,0.42 0.23,0.35 -0.37,0.98 -0.99,0.61 1.65,1.82 0,1.38 0.49,0.41 -0.01,1.17 -1.18,0.79 0.04,4.1 -1.94,0.89 -0.03,0.64 1.4,4.44 -0.24,0.43 -0.66,0.39 -0.24,0.3 0,0.91 -0.13,0.29 -2.18,1.04 -0.07,1.67 -0.21,0.17 -0.41,-0.2 -0.55,0.32 0.4,0.59 0.81,0.25 0.36,0.14 0.45,1.26 -0.91,1.87 0.15,0.28 0.67,-0.27 0.1,0.19 -1.46,1.13 -0.06,1.18 -1.61,0.97 0.64,1 0.77,3.12 0.55,0.23 1.22,-0.28 0.71,3.46 -1.62,2.72 1.9,1.86 0.2,0.48 0.04,1.76 1.15,1.91 0.15,0.59 -0.56,4 0.05,0.78 1.43,6.54 -0.14,0.16 -1.18,0.27 -0.34,0.45 0.41,0.7 0.3,0.23 1.58,-0.23 0.41,1.29 1.14,0.7 -0.31,2.89 0.58,3.51 -0.85,1.65 -3.98,3.25 -0.38,0.04 -0.96,-0.22 -0.61,0.11 -4.28,3.31 -0.8,6.52 0.16,0.3 0.73,-0.01 0.41,0.61 0.14,1.97 0.14,0.35 -0.68,2.96 0.15,0.16 0.68,-1.34 2.74,4.94 -0.98,0.54 -1.15,0.29 -1.06,1.5 -1.21,-0.07 -1.28,0.46 -0.98,0.08 -4.14,-0.24 -0.34,0.32 -2.64,-0.19 -1.25,0.79 -0.51,0.05 -1.28,-0.11 -0.65,-0.88 -2.98,-0.16 -1.34,-0.77 -11.87,-9.23 -1.07,0.28 0.08,1.42 -0.35,0.35 -0.39,-0.62 -0.23,1.47 0.66,1.38 -2.46,4.32 -1.14,3.4 0.44,0.95 -0.48,0.82 -1.16,0.16 -0.16,0.54 1.04,0.27 -0.6,1.83 -1.83,1.42 1.3,0.66 1.3,2.81 2.59,3.22 2.31,0.56 3.09,-1.56 2.72,2.48 0.29,1.56 4.34,1.21 0.2,1.04 -1.81,1.93 1.59,0.6 1.22,1.41 0.71,3.02 2.58,1.2 -3.11,1.21 -1.29,2.44 3.85,-0.89 4.18,2.02 2.81,2.25 -0.06,4.88 1.24,3.27 -0.34,0.43 -2,-0.51 0.64,4.71 1.08,2.93 1.92,1.57 0.88,2.37 -1.96,3.83 5.7,-0.46 -0.39,1.92 0.8,1.74 -0.76,2.42 1.44,1.9 3.76,-2.42 2.22,0 0.64,0.6 -0.47,0.69 -3.24,0.69 -0.06,0.74 1.66,1.88 -0.17,1.33 -2.77,0.53 -1.1,1.02 -1.31,-1.15 -0.22,-1.51 -0.87,1.01 0.19,1.25 1.94,2.22 2.72,1.17 -0.27,0.88 1.25,0.92 -0.82,1.87 2.01,0.87 0.85,3.59 3.26,1.4 -0.33,1.56 1.84,-0.06 0.65,0.65 -1.07,2.7 2.8,0.67 1.23,1.95 1.97,1.39 -0.09,0.61 -1.42,-0.3 0.43,1.17 -0.42,0.28 -1.21,-0.52 -1.27,0.37 0.01,1 -0.9,-0.32 1.07,1.78 1.75,1.37 2.3,-0.58 1.59,1.04 2.14,0.12 1.22,-0.86 1.07,2.73 1.06,-0.68 -0.91,-3.77 2.34,1.1 5.04,-1.55 1.63,-6.28 2.26,-0.52 0.14,-3.46 1.06,-0.06 2.42,-3.51 2.67,-0.15 0.79,-3.22 0.73,-0.68 -0.74,-0.59 1.63,-0.48 0.97,-1.42 2.81,1.12 2.17,-1.46 1.83,2.34 -0.41,3.56 0.51,0.48 -0.9,1.87 0.88,2.21 0.68,-1.02 1.6,0.01 -0.56,0.84 0.37,0.65 1.63,-1.56 1.04,0.63 3.65,-0.29 0.23,-2.59 -1.55,-3.05 0.87,-2.38 4.82,-0.2 4.84,1.59 0.21,0.68 -1.17,1.09 -2.49,0.55 3.72,0.75 5.39,-1.66 1.51,-1.66 0.29,-1.69 2.33,-3.64 2.52,-1.15 -0.01,0.53 1.16,0.94 2.23,-7.67 -0.42,-0.91 0.57,-0.02 1.14,-2.8 0.14,-0.17 0.66,-1.16 -3.68,-8.43 0.52,-3.17 -2.65,-1.86 -1.16,-3.36 5.05,-10.41 2.67,-0.35 2.16,-1.29 3.79,1.47 2.48,-1.57 -2.45,-5.46 -3.66,-1.65 0.81,-1.4 1.29,-0.27 -1.07,-2.46 -2.59,-0.46 1.53,-5.51 3.32,-0.62 2.98,1.74 2.02,-0.53 0.83,-2.85 -1.81,-2.87 -0.15,-1.68 0.6,-1.65 3.46,-4.13 -0.06,-2.77 -1.06,-1.87 0.62,-1.36 1.95,-0.89 5.02,0.3 2.38,-1.23 2.05,1.94 1.07,0.06 2.01,-1.68 0.75,-3.27 2.42,-1.97 -0.22,-2.56 2.38,-1.95 -0.4,-4.1 1.53,-2.86 5.64,-3.81 1.02,-1.93 -0.89,-2.07 -4.27,-2.39 -1.52,-2.6 3.11,-1.95 1.97,-2.88 5.06,0.31 0.18,-0.45 -1.42,-0.98 0.4,-2.07 5.44,-0.11 3.39,-2.45 1.89,-2.66 -0.7,-0.34 -2.82,1.02 1.22,-3.73 5.9,0.28 0.16,-1.5 -2.13,-3.1 0.34,-0.92 z"
title="Dhaka" id="BD-C" class=" mapsvg-region"
style="fill: rgb(95, 211, 62); stroke-width: 1.50535px;">
</path>
</a>
<a href="#">
<path id="khulnapath"
d="m 131.66233,421.87628 0.83,0.87 1.02,0.07 -0.86,0.57 0.83,3 0.36,5.99 1.2,0.92 -0.18,3.78 -1.2,1.65 3.83,5.1 0.1,0.62 1.56,3.44 0.16,0.17 -1.72,3.41 3.85,12.85 0.68,0.64 0.96,1.27 -0.05,2.48 -2.27,4.29 2.14,2.32 4.79,-13.24 -4.09,-7.7 2.97,-3.38 0.03,-1.62 0.12,-0.18 0.43,1.33 0.7,-0.26 -0.36,-3.55 2.29,-2.94 1.82,-4.06 -0.94,-4.51 -2.71,-5.07 -0.47,-5.99 -1.56,-5.44 -3.3,-4.29 -0.33,-0.43 -0.65,-2.48 -2.14,-1.61 -1.19,-0.21 -0.78,0.24 -1.52,-0.22 0.15,2.09 -5.29,4.69 2.21,2.69 -0.05,1.12 -1.37,1.58 z m 12.27,65.02 -0.33,-7.73 0.54,-0.6 2.17,2.61 -2.38,5.72 z m -31.38,10.72 -1.55,-0.91 -0.88,-3.26 1.4,-1.41 4.92,1.04 1.4,-1.67 0.71,1.66 1.04,1.88 -1.09,0.45 1.15,0.17 0.37,3.78 -2.66,-0.73 -3.83,1.08 -0.98,-2.08 z m 11.34,-11.37 2.99,-1.61 -0.61,-2.65 -1.61,-3.5 -2.87,-3.53 -0.1,-0.27 -2.7,-5.94 1.66,-2.7 -3.13,0.44 -0.97,-1.25 -1.58,-0.26 -0.82,0.28 2.14,1.9 0.44,1.77 -3.21,4.9 2.17,1.12 0.86,1.45 -0.68,1.13 -3.15,1.94 2.31,1.04 2.44,2.55 1.69,-0.43 1.4,0.88 0.03,1.73 -1.58,1.98 0.64,3.14 0.85,0.21 -1.12,0.67 1.53,1.69 1.33,-4.64 1.65,-2.04 z m -17.18,13.29 0.19,1.77 -1.13,1.36 -2.59,-0.03 -3.540005,-4.9 -2.46,-1.74 1.52,-6.7 -0.66,-2.28 -1.88,-1.95 -0.06,-1.53 0.23,-0.82 1.29,-0.35 0.93,0.32 0.16,3.27 2.240005,3.02 -0.74,3.73 0.87,2.41 4.38,2.64 0.04,0.9 1.21,0.88 z m 11.65,5.53 2.34,1.1 -1.53,1.84 -1.91,-0.15 0.51,0.62 -0.41,0.52 -4.42,0.68 -0.46,-1.51 1.54,-3.31 0.49,0.16 1.61,0.83 1.06,-0.32 1.18,-0.46 z m -12.16,-26.24 2.85,-3.76 -0.57,-2.48 0.94,-0.11 0.97,0.03 1.03,1.95 4.31,1.67 -3.61,2.35 0.57,2.52 1.05,0.86 1.89,-0.09 0.52,1.5 0.95,0.58 2.7,0.26 -1.48,2.16 -0.15,0.2 0.58,2.68 -2.4,3.38 -5.11,-1.09 1.55,-8.52 -2.71,-0.76 -0.46,-0.03 -1.56,0.14 -1.72,-1.33 -0.14,-2.11 z m 18.36,-22.36 0.34,2.43 -0.88,2.63 1.92,-0.56 -0.07,1.79 2.32,1.96 0.68,-2.18 2.19,-0.92 0,-0.42 0.11,-2.39 2.96,-1.28 2.13,2.33 1.03,-1.57 -1.3,-3.34 -0.14,-2.29 0.09,-2.77 -3.58,1.55 -0.18,0.27 -0.88,-1.44 0.29,-1.13 -2.36,-1.14 -1.04,1 -1.01,-1.21 -1.78,1.4 0.97,0.26 0.2,0.69 -0.8,0.79 -0.34,1.93 -1.29,0.41 0.12,1.44 -0.81,0.84 1.11,0.92 z m 15.99,9.35 -1.84,-0.58 -1.19,-1.62 -0.22,-3.07 0.75,-0.29 1.09,0.99 0.73,2.37 0.68,2.2 z m -22.75,33.07 1.9,0.78 0.47,2.02 -0.78,2.53 -1.2,0.28 -0.37,0.06 -1.57,0.96 -2.19,-1.22 -0.4,-4.21 4.14,-1.2 z m 17.43,-31.33 4.05,-1.87 1.77,1.27 -3.84,2.92 -2.15,-1.6 0.17,-0.72 z m 26.14,18.18 1.42,4.12 -0.23,1.06 -1.66,0.58 -2.09,-0.43 -0.24,-0.66 -2.6,0.53 -0.24,-3.4 -1.01,-1.44 1.95,-1.98 1.35,-3.79 -0.62,-4.89 0.96,-1.38 0.4,0.43 0.28,1.51 0.69,0.81 0.96,0.18 -0.98,1.82 1.51,2.94 -1.48,2.67 1.63,1.32 z m 12.58,-7.18 1.29,5.08 -1.01,2.7 -1.56,1.07 -0.69,-0.81 -0.52,0.31 0.07,2.55 -4.42,0.95 -1.15,1.13 -0.97,-0.48 0.42,-1.59 -2.19,-0.32 -1.23,-3.49 -1.81,-1.52 1.47,-1.49 -0.54,-2.09 -1.02,-1.91 1.28,-0.88 -0.47,-1.22 -0.72,-0.17 -0.8,-0.39 -0.07,-2.04 -0.84,-0.24 0.61,-2.53 -2.47,-1.74 3,-2.14 0.24,-5.59 3.25,-0.51 0.72,0.06 0.86,1.48 0.91,3.11 4.65,3.61 0.4,0.17 1.1,-0.02 1.76,2.47 0.45,6.48 z m -21.62,8.64 0.16,-1.11 1.18,-0.85 1.38,2.66 -1.02,1.23 -1.7,-1.93 z m 26.14,-59.94 -2.04,-0.6 -0.6,-1.28 0.67,-1.6 2.49,-0.05 4.37,1.17 -0.04,-1.33 -4.05,-0.26 2.89,-3.67 1.05,-4.22 -0.95,-1.05 -3.32,-0.48 0.83,-3.94 -3.23,-1.76 0.83,-1.72 1.36,1.52 0.88,-0.41 1.29,-1.16 -0.77,-0.9 -2.34,-0.8 -2.85,0.54 -0.91,-0.86 4.07,-2.93 2.19,0.49 0.28,-2.98 -1.89,0.13 0.12,-1.4 -0.89,-0.9 3.39,-0.6 -0.48,-1.57 -1.83,-0.22 1.91,-2.22 -1.06,-2.73 -1.22,0.86 -2.14,-0.12 -1.59,-1.04 -2.3,0.58 -1.75,-1.37 -1.06,-1.78 0.9,0.32 -0.01,-0.99 1.27,-0.37 0.99,0.35 0.43,-0.28 -0.43,-1.17 1.42,0.3 0.09,-0.61 -1.97,-1.39 -1.23,-1.95 -2.8,-0.67 1.07,-2.7 -0.65,-0.65 -1.84,0.06 0.33,-1.56 -3.26,-1.4 -0.85,-3.59 -2.01,-0.87 0.82,-1.87 -1.25,-0.92 0.27,-0.87 -2.72,-1.17 -1.93,-2.22 -0.19,-1.25 0.88,-1.01 0.22,1.52 1.31,1.15 1.1,-1.02 2.77,-0.53 0.17,-1.33 -1.66,-1.88 0.06,-0.74 3.24,-0.69 0.47,-0.69 -0.63,-0.6 -2.22,0 -3.76,2.42 -1.44,-1.89 0.76,-2.41 -0.8,-1.74 0.39,-1.92 -5.7,0.46 1.96,-3.83 -0.88,-2.37 -1.92,-1.57 -1.08,-2.93 -0.64,-4.71 2,0.51 0.34,-0.43 -1.24,-3.27 0.06,-4.88 -2.81,-2.25 -4.18,-2.02 -3.84,0.9 1.3,-2.44 3.11,-1.21 -2.58,-1.2 -0.71,-3.02 -1.22,-1.4 -1.59,-0.6 1.81,-1.93 -0.2,-1.04 -4.34,-1.21 -0.29,-1.56 -2.72,-2.48 -3.09,1.56 -2.31,-0.56 -2.59,-3.22 -1.39,-2.82 -1.3,-0.66 1.83,-1.42 0.6,-1.83 -1.04,-0.27 0.16,-0.54 1.16,-0.16 0.48,-0.82 -0.43,-0.95 1.14,-3.4 2.46,-4.32 -0.66,-1.37 0.23,-1.47 0.39,0.62 0.36,-0.35 -0.08,-1.42 -3.76,-2.7 -0.45,-0.46 -1.07,-1.8 -5.18,-2.11 -0.77,-0.19 -0.67,1.21 -0.79,2.58 -1.96,1.28 -0.93,-0.39 -1.35,-3.99 -0.28,-0.01 -0.92,1.61 -1.02,0.47 -3.93,-1.37 -2.31,0.02 -0.26,-1.19 -3.010005,-1.05 -1.85,-5.96 -0.3,-0.44 -2.12,-6.49 -0.63,-0.96 -5.17,-0.55 -0.81,-0.2 -0.78,-0.41 -1.65,0.82 0.18,-1.08 -0.1,-0.05 -0.92,0.28 -0.22,0.18 0.19,1.13 -0.12,0.14 -3.04,1.22 -0.22,-0.01 0.66,-1.33 -0.16,-0.17 -1.28,0.51 -0.41,-0.07 -7.11,-2.46 -2.94,-3.01 -2.15,-4.1 -0.08,1.26 -1.38,-0.29 -0.58,2.4 -1.08,1.09 1,4.81 -1.45,0.56 0.49,1.89 2.4,-0.1 -0.3,3.07 1.43,0.65 -1.34,0.71 1.14,0.61 0.35,1.22 -0.13,2.13 -0.99,1.96 2.96,-1.39 1.15,2.39 -2.75,0.01 -0.62,0.66 0.69,4.31 -0.87,0.63 -0.13,1.71 -2.76,0.01 0.16,1.43 -1.1,-0.08 -0.63,1.09 -1.73,0.52 -0.78,1.62 -2.74,0.64 -1.07,-1.4 -1.33,1.14 -1.18,-0.64 -1.43,1.12 -0.04,0.55 1.06,0.37 0.07,1.66 1.32,1.79 -1.41,0.47 0.51,1.17 -0.96,0.47 -0.15,0.83 -1.97,0.39 1.83,1.91 -1.37,5.15 0.9,4.79 -1.14,2.61 2.88,0.56 -0.19,2.21 -0.89,1.43 1.7,-0.28 0.3,0.55 4,-1.01 -0.58,1.5 0.91,0.92 1.01,3.22 2.35,1.39 1.04,2.18 3,0.93 1.46,2.8 1.13,0.27 0.44,-0.81 1.02,0.64 -0.02,-1.22 0.86,-0.6 1.79,0.28 0.11,1.8 -1.05,1.25 0.24,2.39 -1.22,0.56 -1.19,-0.7 -0.74,2.42 0.25,1.33 -0.67,1.66 0.88,2.82 -2.69,1.57 1.17,3.7 -0.57,0.32 -1.22,-1.03 -0.39,1.8 -1.23,-0.97 -1.15,1.23 2.47,2.72 -0.31,1.72 2.51,1.55 1.98,-0.21 1.45,2.13 1.22,0.29 1.63,-0.1 -0.57,-2.72 0.09,-0.65 0.83,-0.12 1.22,0.64 0.64,0.69 1.41,1.35 5.69,-0.55 0.53,2.2 0.9,-0.44 2.16,1.02 2.61,-1.98 1.41,0.98 -0.67,0.55 -0.53,2.6 -1.24,-1.1 -0.67,0.23 -0.7,1.43 -1.51,0.67 -0.61,3.1 -0.81,-0.09 -0.17,1.36 -1.2,0.46 -0.99,1.57 -2.61,1.09 -0.29,2.68 1.2,2.98 -0.55,3.55 -2.5,0.19 1.99,1.3 0.07,2.11 -0.68,1.38 3.18,0.47 0.14,2.4 1.58,0.82 -0.98,1.49 0.56,2.68 2.18,0.96 1.26,-0.96 2.02,3.53 -0.85,4.88 -1.83,0.78 -1.71,2.14 -0.11,2.81 3.73,4.72 -1.13,3.12 -1.44,1.44 0.43,2.67 1.68,-0.37 0.7,0.62 -1.98,2.56 0.06,2.94 1.99,1.25 1.66,6 1.85,1.96 -0.78,2.38 0.99,1.81 -2.57,2.13 2.12,2.14 -1.2,1.25 0.64,0.99 -0.52,3.86 1.52,0.27 2.28,2.81 -2.47,0.03 -0.27,1.06 2.19,1.42 -0.32,1.54 1.75,-0.33 0.82,3.13 2.680005,2.82 0.29,0.53 -0.940005,2.21 0.44,1.87 0.420005,0.39 1.77,-1.26 0.65,0.64 -0.13,1.03 -4.920005,4.92 0.68,3.15 2.820005,0.98 -1.630005,0.06 2.110005,3.66 0.03,0.52 0.63,7.41 -0.57,-0.76 -0.7,2.07 -0.36,2.13 1.91,3.36 0.3,5.07 -0.36,0.84 5.12,1.94 1.39,-0.94 0.95,-3.5 0.64,-3.76 1.5,-3.59 -5.3,-0.48 -1.34,-3.25 0.6,-2.32 2.39,-2.21 -1.56,-4.53 0.67,-1.52 1.82,-0.82 -1.84,2.41 0.88,1.06 2.32,0.31 1.69,2.23 3.77,-5.53 -0.81,-1.7 -1.98,-1.34 -0.89,-2.91 -0.25,-1.17 0.88,-0.52 -0.54,-1.42 3.22,-1.44 -1.8,-3.89 1.82,-1.69 -0.53,-1.41 0.49,-1.62 0.51,-2.43 1.33,-1.2 -0.99,1.59 -0.36,4.36 5.39,0.39 0.22,-1.27 -1.06,-2.08 1.59,1.48 -0.37,2.22 1.59,1.8 0.24,-1.48 1.18,-0.78 0.24,-1.09 1.04,-1.45 -1.53,-0.61 1.03,-0.87 0.19,-0.21 0.84,-0.68 1.23,0.13 0.23,0.63 0.83,-0.72 2.63,1.12 1.38,-2.12 -0.75,-1.03 -1.22,-1.54 0.99,-1.57 -1.98,-1.45 0.44,-1.15 -1.67,-0.28 -0.03,-2.32 -1.72,0.2 0.34,-1.93 -1.01,-2.74 1.17,-3.89 -1.41,0.45 -0.91,-1.26 -8.17,1.09 0.16,-1.48 2.47,-0.84 -1.6,-1.24 5.5,-2.77 0.05,1.38 2.22,1.02 -0.86,1.45 0.2,0.89 0.93,-0.6 2.94,0.88 0.61,-0.93 2.36,-0.07 0,-1.71 -1.09,-2.47 0,-0.28 1.43,-2.83 -3.02,-3.72 -0.62,-2.42 1.85,-1.09 0.63,-2.07 0.34,-0.44 0.27,0.37 0.76,2.04 -1.02,2.93 4.18,-3.45 -0.01,-2.22 1.63,0.26 1.21,-0.67 3.2,2.23 0.55,1.26 0.31,0.45 0.31,0.28 3.9,5.93 2.09,8.07 1.69,-3.72 2.07,-0.94 -0.4,-1.68 0.52,-2.08 1.89,0.63 0.32,0.06 2.17,-2.31 0.83,0.36 -1.17,1.46 0.32,0.44 2.76,-0.85 3.76,2.19 1.49,1.21 1.53,0.63 0.13,1.24 1.37,1.52 3.64,0.11 3.71,4.87 0.09,1.23 3.04,-1.83 2.19,-0.45 0.81,-1.19 -1.07,-1.17 -2.3,0.27 z m -46.29,-15.2 -1.74,4.36 -0.71,-0.98 -0.59,-2.1 1.74,-0.77 0.59,-2.11 0.71,1.6 z m 22.8,80.46 3.7,2.95 -0.16,2.09 -2.78,1.74 -1.64,0.04 -0.54,-0.58 -0.92,0.28 -2.49,-0.78 0.83,-2.18 -0.37,-1.54 -5.58,-5.3 0.22,-0.56 -0.93,-1.61 2.55,-5.99 1.24,-1.06 1.8,-0.14 1.45,0.29 2.27,3.39 -1.92,2.77 0.05,2.06 3.22,4.13 z m 20.17,-62.01 -3.75,-4.62 -3.53,-0.3 -1.94,-2.74 -2.44,-1.89 -3.55,-2.08 -2.76,1.03 -0.6,-0.96 -1.37,0.97 -1.87,-0.26 -0.32,1.07 0.25,2.17 -2.17,1.18 -2.33,4.24 2.64,5.2 1.13,5.68 -0.58,2.96 -3.34,4.79 0.52,2.27 -0.86,2.71 -1.22,1.09 -1.95,0.45 -0.21,0.76 4.95,7.55 -1,4.09 -2.06,3.45 -2.38,9.2 1.86,1.96 0.73,0 0.68,-1.03 0.49,0.22 3.54,0.15 0.27,0.34 2.68,4.27 1.08,-0.49 0.76,-1.44 0.88,-3.38 -0.93,-3.18 2.13,-4.56 -1.87,-0.85 -0.65,-1.06 0.86,-1.52 0.52,-0.02 1.7,-0.83 0.22,-2.95 0.12,-2.44 -1.76,-4.78 -0.24,-2.21 0.49,0.26 1.38,-0.73 0.68,0.98 -0.42,0.92 -1.53,0.11 0.23,1.31 1.63,3.67 2.78,-0.52 1.41,0.52 1.19,2.02 0.36,2.01 2.46,2.15 0.53,-0.27 1.32,0.93 2.28,0.2 2.94,-3.31 0.75,-2.66 -0.75,-6.66 -1.43,-1.98 -1.92,-0.98 -0.49,-1.9 1.31,-5.52 3.72,-7.09 0.03,-1.68 -2.08,-3.22 0.8,-2.77 z m -43.43,13.05 1.13,-1.75 -0.21,-2.05 3.24,3.38 2,4.16 -1.6,1.93 -0.97,0.25 -2.85,1.45 -0.4,-0.81 1.58,-3.33 -0.63,-1.47 -1.29,-1.76 z m -10.39,9.53 1.04,2.6 -3.88,3.91 -0.75,1.37 0.13,2.21 -1.02,1.07 -3.46,0.46 -0.93,-2.76 1.83,-0.67 -1.26,-1.22 3.01,-1.51 -1.77,-3.89 1.88,-1.77 5.18,0.2 z m -2.31,9.85 0.22,0.43 -1.51,2.27 3.33,-0.84 0.82,1 -0.03,1.31 -0.26,0.32 -1.49,1.06 3.3,6.72 2.19,2.27 -0.6,-5.75 4.1,-6.05 -3.43,-2.36 -0.03,-1.94 -1.26,0.8 -0.82,-0.47 0.74,-2.32 -0.18,-2.87 -0.67,-0.33 -3.33,3.23 -1.09,3.52 z m 20.21,8.71 -1.42,-1.91 3.51,-2.68 0.42,0.62 -0.45,1.43 -2.06,2.54 z m 8.9,27.19 1.89,3.85 -1.7,0.75 -1.94,-0.13 -1.34,-1.02 -1.99,-4.49 0.46,-0.5 0.96,0.73 -0.44,-1.97 0.53,-0.59 -1.81,-3.05 0.98,-2.82 5.94,4.98 -0.14,2.38 -1.3,1.05 -0.1,0.83 z m -7.06,-19.2 -0.14,1.63 0.05,0.41 -0.62,2.12 -4.92,-0.14 0.88,-1.53 -0.15,-1.48 -2.1,-1.01 -1.47,-2.02 1.61,-2.08 -0.68,-6.13 0.89,-0.93 2.19,1.57 0.61,0.15 3.13,7.79 0.14,0.28 0.58,1.37 z m -15.14,11.79 -1.27,1.65 -0.13,2.93 -2.09,-4.25 -0.33,-2.18 5.22,-3.27 -1.4,5.12 z m 9.93,0.31 -0.24,-1.48 -2.68,-0.26 -0.33,-0.41 2.39,0.05 0.73,-0.58 0.34,-3.26 1.19,-1.34 -2.28,-0.49 -0.18,-0.86 1.11,-1.83 -2.59,-1.43 -1.15,-2.06 0.66,-1.6 0.81,-0.57 -0.7,-5.78 2.13,-2.57 0.1,-0.14 3.31,-1.45 -2.5,-3.1 0.39,-2.32 -2.42,-1.98 -2.37,0.9 -0.34,2.76 -2.29,0.98 0.7,3.69 -3.62,5.51 1.02,6.7 1.58,3.28 0.23,4.58 -3.23,7.43 0.68,0.9 0.47,4.88 1.38,1.65 2.19,1.16 1.94,-0.72 0.6,-1.48 1.77,-1.31 0.22,-1.38 0.7,0.45 1.93,-2.77 -0.15,-1.77 -1.5,-1.98 z"
title="Khulna" id="BD-D" class=" mapsvg-region"
style="fill: rgb(255, 109, 109); stroke-width: 1.50535px;"></path>
</a>
<a href="#">
<path id="rajshahipath"
d="m 154.26233,165.58628 1.08,5.15 0,0 0.2,0.59 0,0 1.35,2.7 0,0 -0.03,1.08 0,0 -0.47,2.36 1.13,1.75 0,0 -0.17,0.14 0,0 -0.45,0.01 0,0 -0.6,0.37 0,0 -1.09,0.74 0,0 0.04,0.58 0,0 2.09,5.53 2.03,2.06 2.5,1.3 1.06,-0.13 0,0 0.26,0.58 0,0 -1.48,0.2 -0.84,1.11 0,0 -0.15,0.77 0,0 1.29,1 0,0 0.28,0.12 0,0 0.6,-1.11 1.48,1.21 1.2,-1.05 0.95,0.88 0.1,2.13 0.62,0.42 0,0 0.23,0.35 0,0 -0.37,0.98 0,0 -0.99,0.61 0,0 1.65,1.82 0,1.38 0,0 0.49,0.41 0,0 -0.01,1.17 -1.18,0.79 0.04,4.1 -1.94,0.89 0,0 -0.03,0.64 0,0 1.4,4.44 0,0 -0.24,0.43 0,0 -0.66,0.39 0,0 -0.24,0.3 0,0 0,0.91 0,0 -0.13,0.29 0,0 -2.18,1.04 -0.07,1.67 0,0 -0.21,0.17 0,0 -0.41,-0.2 0,0 -0.55,0.32 0.4,0.59 0,0 0.81,0.25 0,0 0.36,0.14 0,0 0.45,1.26 -0.91,1.87 0,0 0.15,0.28 0,0 0.67,-0.27 0,0 0.1,0.19 0,0 -1.46,1.13 -0.06,1.18 -1.61,0.97 0,0 0.64,1 0,0 0.77,3.12 0,0 0.55,0.23 0,0 1.22,-0.28 0.71,3.46 -1.62,2.72 1.9,1.86 0,0 0.2,0.48 0,0 0.04,1.76 1.15,1.91 0,0 0.15,0.59 0,0 -0.56,4 0,0 0.05,0.78 0,0 1.43,6.54 0,0 -0.14,0.16 0,0 -1.18,0.27 0,0 -0.34,0.45 0,0 0.41,0.7 0,0 0.3,0.23 0,0 1.58,-0.23 0.41,1.29 1.14,0.7 -0.31,2.89 0.58,3.51 -0.85,1.65 -3.98,3.25 0,0 -0.38,0.04 0,0 -0.96,-0.22 0,0 -0.61,0.11 0,0 -4.28,3.31 -0.8,6.52 0,0 0.16,0.3 0,0 0.73,-0.01 0,0 0.41,0.61 0,0 0.14,1.97 0,0 0.14,0.35 0,0 -0.68,2.96 0,0 0.15,0.16 0,0 0.68,-1.34 2.74,4.94 0,0 -0.98,0.54 0,0 -1.15,0.29 -1.06,1.5 0,0 -1.21,-0.07 0,0 -1.28,0.46 0,0 -0.98,0.08 0,0 -4.14,-0.24 0,0 -0.34,0.32 0,0 -2.64,-0.19 -1.25,0.79 0,0 -0.51,0.05 0,0 -1.28,-0.11 0,0 -0.65,-0.88 0,0 -2.98,-0.16 0,0 -1.34,-0.77 0,0 -11.87,-9.23 0,0 -1.07,0.28 0,0 -3.76,-2.7 0,0 -0.45,-0.46 0,0 -1.07,-1.8 -5.18,-2.11 0,0 -0.77,-0.19 -0.67,1.21 0,0 -0.79,2.58 -1.96,1.28 0,0 -0.93,-0.39 0,0 -1.35,-3.99 0,0 -0.28,-0.01 0,0 -0.92,1.61 -1.02,0.47 -3.93,-1.37 -2.31,0.02 0,0 -0.26,-1.19 0,0 -3.010005,-1.05 -1.85,-5.96 0,0 -0.3,-0.44 0,0 -2.12,-6.49 0,0 -0.63,-0.96 0,0 -5.17,-0.55 0,0 -0.81,-0.2 0,0 -0.78,-0.41 -1.65,0.82 0.18,-1.08 0,0 -0.1,-0.05 0,0 -0.92,0.28 0,0 -0.22,0.18 0,0 0.19,1.13 0,0 -0.12,0.14 0,0 -3.04,1.22 0,0 -0.22,-0.01 0,0 0.66,-1.33 0,0 -0.16,-0.17 0,0 -1.28,0.51 0,0 -0.41,-0.07 0,0 -7.11,-2.46 -2.94,-3.01 -2.15,-4.07 0.44,-5.94 -1.39,-3 -1.59,-1.23 -3.03,-0.64 -4.1,0.93 -0.39,-0.9 -1.66,-0.18 -0.36,0.59 -1.41,-0.45 -0.26,-1.09 -1.55,-0.16 -1.38,3.17 -2.46,-4.88 -2.02,-0.05 -5.51,-3.31 -2.01,-0.51 -3.28,1.01 -2.35,-0.08 -3.16,-1.05 -5.42,-5.68 -7.05,-2.24 -2.27,-3.05 -2.62,-1.57 -4.1299999,-4.43 -5.4,-9.07 -3.38,-3.09 5.08,-5.61 0.85,-2.03 -0.61,-0.88 0.7,-0.98 -0.4,-1.03 0.97,-0.14 0.83,-1.21 1.51,0.32 0.14,-2.57 1.4099999,-1.76 1.18,-1.04 1.18,-1.9 1.56,-0.6 -0.19,-1.22 0.03,-1.18 -0.71,-0.73 1.46,-0.37 -2.81,-2.79 -0.08,-1.93 1.41,0.28 2.38,-2.11 4.49,-0.57 3.34,4.23 1.3,2.32 0.19,0.87 1.97,0.23 0.37,1.51 1.73,-1.14 2.36,-1.09 -2.02,-1.9 0.92,-0.73 0.52,-2.18 2.03,-1.28 1.97,1.4 1.6,-0.81 -0.74,-1.66 0.37,-0.74 1.86,-0.5 -0.36,-2.01 1.01,-1.37 1.14,0.04 1.62,-3 -1.62,-1.5 1.53,-2.99 -0.94,-4.83 1.86,-1.62 -0.4,-2.34 -1.28,-1.24 0.1,-2 2.41,-0.16 0.58,-1.59 2.06,0.17 0.11,0.65 3.36,0.48 -0.1,1.06 2.21,-0.36 -0.06,1.51 0.67,0.17 1.33,-0.18 1.07,-1.5 2.4,-1.25 5,0.56 1.1,-0.97 2.54,0.05 2.17,0.93 0.27,1.27 1.57,1.08 1.96,-1.36 0.45,1.1 2.44,0.83 1.02,-0.34 1.58,-3.15 1.25,-0.51 0.79,1.06 1.17,-0.03 1.04,2.08 1.94,-0.36 1.42,0.51 0.16,0.98 0.81,0.3 0.63,-1.84 1.65,0.1 -0.14,-1.72 -0.96,-0.19 -0.08,-1.6 1.32,0.49 0.94,-0.64 -0.72,-2.24 0.35,-1.54 2.25,-1.6 0,0 3.31,3.06 7.190005,0 0.9,1.48 5.84,0.99 4.5,-0.49 0,1.48 -1.35,1.98 0.45,1.98 1.35,2.96 3.15,1.98 1.35,3.46 2.7,0.99 2.7,-1.48 2.7,0 3.15,3.95 2.25,1.48 0.9,0 0.9,-1.48 2.7,0 8.09,4.44 1.8,0 4.05,-2.47 4.51,-0.59 z"
title="Rajshahi" id="BD-E" class=" mapsvg-region"
style="fill: rgb(215, 209, 8); stroke-width: 1.50535px;"></path>
</a>
<a href="#">
<path id="rangpurpath"
d="m 154.26233,165.58628 -4.58,0.48 -4.04,2.47 -1.8,0 -8.09,-4.44 -2.7,0 -0.9,1.48 -0.9,0 -2.24,-1.48 -3.15,-3.95 -2.7,0 -2.69,1.48 -2.7,-0.98 -1.35,-3.46 -3.14,-1.97 -1.35,-2.97 -0.45,-1.97 1.35,-1.98 0,-1.48 -4.5,0.49 -5.84,-0.99 -0.9,-1.48 -7.190005,0 -3.31,-3.05 0,0 0.76,-0.8 1.87,0.44 0.37,-2.09 -2.03,-0.01 -0.59,-1.05 -0.66,0.39 -1.85,-0.59 -1.07,0.62 -0.73,-0.96 -1.07,0.78 -1.79,-3.3 -1.43,0.24 -0.24,1.11 -1.54,-1.63 -0.05,-1.01 -2.63,-1.48 0.13,-3.05 -2.64,-1.67 1.33,-0.51 0.56,-1.23 -0.78,-1.63 1.26,-1.29 -0.29,-1.67 -0.67,-1.64 -1.63,-0.17 -0.39,-3.37 -1.21,-0.19 -1.42,0.92 -1.82,-0.9 -0.01,1.34 0.94,0.95 -0.34,0.71 -2.45,0.65 -0.39,-1.67 -2.6,0.53 -0.09,1.83 -1.05,0.97 -3.17,-0.08 -0.5,-0.93 -0.93,0.28 -0.17,-1.85 -2.2,-0.04 -1.41,-1.84 -1.07,0.95 -1.87,-0.16 -2.32,-1.26 -0.98,1.14 -0.19,-2.5 -0.67,-0.95 -0.98,0.72 -1.2,-0.95 -1.29,-1.6 0.32,-2.43 -2.58,0.02 -1.32,-1.57 -1.13,-0.07 0.38,-2.44 0.72,-0.75 -0.13,-3.38 -4.65,-0.91 -0.06,-1.359999 -1.1,0.07 -0.24,-0.97 -1.61,-0.38 0.33,-1.83 -1.61,-0.55 -0.13,-0.81 -3.18,-0.97 -0.64,-1.62 -4.45,-3.02 0.37,-1.75 -0.54,-1.17 -0.64,-0.39 -1.06,0.13 -0.4,0.74 -0.8,-0.34 -0.48,1.24 -1.4,-0.28 -0.97,1.25 -1.29,-1.37 -0.8,-0.01 -1.07,1.48 -0.95,-0.22 -1.21,1.33 -0.72,-0.52 -0.24,-1.56 -2.28,-0.29 0.29,-1.4 -0.8599999,-0.32 -0.61,-1.3 0.66,-1.08 -0.76,-0.72 1.1099999,-0.96 -1.1299999,-3.31 0.47,-0.54 -1.47,-0.42 -0.15,-0.87 -0.25,-1.78 0.69,-1.25 1.66,-0.46 0.4599999,-2.37 0.97,-0.86 -0.35,-1.07 2.04,-2.43 -0.26,-1.15 4.04,-1.27 -1.31,-0.91 0.48,-0.62 0.29,-0.81 -0.24,-1.06 0.76,-0.36 -0.07,-0.87 -1.73,-1.54 -0.57,-1.15 1.82,-3 -0.45,-0.26 0.4,-2.04 1.59,-0.54 0.99,-0.75 2.01,-0.96 0.88,-0.81 -0.32,-0.76 1.35,-0.71 0.41,0.54 2.06,-0.26 1.64,-1.49 0.64,0.53 1.85,-0.56 1.21,-1.34 1.81,-0.61 0.77,-2.1 -0.83,-0.48 -0.01,-3.82 3.53,-3.34 2.5,-0.24 -0.86,-1.5 0.74,-0.65 2.18,-0.04 1.86,-3.81 0.39,1.45 2.34,1.1 0.3,-1.11 1.74,-0.05 -0.28,1.29 1.78,-1.24 -0.8,-0.39 -0.02,-0.93 0.43,-1.6 -0.65,0.11 -0.68,-1.22 0.4,-0.76 -1.34,-0.26 -0.2,-0.83 0.38,-0.98 -0.02,-0.89 -1.75,-1.89 0.35,-0.9 -4.28,-0.47 -1.44,0.05 -1.66,-2.11 -1.24,0.66 -2.21,-0.83 -1.1,4.3 -0.63,-2.14 -1.39,-1.28 0.02,-1.56 1.69,-1.92 0.82,-3.7299998 1.11,-1.33 -0.28,-1.46 0.69,-1.97 1.19,-0.99 -0.14,-0.82 2.25,-2.45 1,6.85 1.12,2.28 1.39,1.1399998 1.12,-1.1799998 2.24,0.6099998 0.73,2.84 2.89,0.83 0.18,2.54 3.22,-0.75 -0.83,1.18 1.03,0.51 -0.57,1.65 3.74,0.77 -0.17,-2.33 2.39,0.08 0.36,3.71 2.35,0.85 -0.34,0.95 1.4,0.15 0.9,1 1.58,-0.38 0.03,0.98 0.15,1.45 -0.7,0.73 1.39,1.8 -0.01,1.94 0.73,1.04 2.89,-2.15 1.31,0.19 1.16,2.02 -0.45,1.46 0.45,1.99 3.5,-1.3 2.12,1.29 -0.55,2.17 0.33,2.09 1.58,0.8 -0.28,0.63 1.29,1.22 3.59,-0.48 -1.6,-1.97 0.01,-2.04 1.89,-1.47 4.36,0.34 2.2,4.2 1.13,0.66 6.32,-0.88 1.67,0.66 0.51,-1.51 0.8,0.3 -0.74,-2.37 0.73,-0.32 -0.41,-1.33 -1.1,-0.27 -0.13,0.94 -1.75,0.21 -0.91,-0.71 -0.73,-1.23 -1.1,1.14 -0.08,-0.89 -1.07,-0.31 0.03,-1.61 0.73,-0.47 0.72,-0.4 -1.42,-0.84 -0.1,-1.61 -2.16,-0.22 -0.43,2.25 -0.52,-1.07 -0.43,-0.63 -0.17,-1.08 -1.56,-0.86 -0.83,0.53 -0.6,-0.77 -0.13,-0.61 -0.25,-0.78 0.84,-0.73 0.1,-1.16 -1.37,-1.1 2.25,-0.17 -0.36,-1.49 0.22,-0.87 1.65,0.75 0.62,-1.08 -0.44,-1.25 1.03,-1.21 2.41,1.34 -0.39,1.07 0.96,1.75 0.55,-0.3 0.58,0.04 0.6,1.06 1.34,-0.08 1.14,1.91 0.84,-0.5 3.110005,0.83 0.97,-0.47 0.83,0.6 -0.53,2.38 -0.93,0.47 1.5,0.44 0.4,2.48 -0.23,0.87 1.63,1.09 2.1,-0.17 -0.12,1.13 -0.25,1.07 -0.94,1.16 -1.68,-2.96 -0.35,1.05 0.57,1.62 -0.61,0.93 2.07,1.61 -0.2,1.36 1.74,1.91 0.04,1.88 0.75,0.9 -1.38,2.96 2.02,2.01 -0.75,0.26 0.55,1.66 1.26,1.38 2.27,0.73 1,-0.51 2.04,0.44 2.55,3.16 1.39,0.06 -1,2.87 1.47,0.32 0.54,1.23 2.03,-0.03 2.22,1.27 2.26,2.75 4.3,0.38 -0.12,-1.38 1.39,-1.06 0.16,-0.94 1.49,-0.64 0.88,1 -0.56,2.12 0.52,0.72 3.73,1.23 1.43,-1 1.38,0.63 1.22,-0.83 1.97,0.3 1.06,0.57 -1.17,1.11 0.23,1.94 1.34,0.61 1.07,-1.41 0.81,-0.12 1.19,0.39 0.1,-1.91 -0.76,-0.95 0.46,-2.18 0.14,-1.27 0.56,-0.81 1.94,-0.9 1.38,-0.89 1.99,-0.21 -1.46,-1.52 0.59,-1.25 -1.01,-1.73 -0.68,0.72 -0.5,0.54 -0.8,0.69 -1.39,-1.32 0.13,-0.68 0.31,-0.57 1.64,0.67 1.32,-1.29 -0.42,-0.93 -1.26,0.1 -0.64,1.07 -1.27,-4.19 0.47,-0.37 1.3,0.74 -0.08,-0.8 0.12,-0.99 0.52,-0.77 0.49,0.69 0.85,-0.04 1.69,0.74 0.68,-1.49 -1.66,0.02 -1.08,-0.77 0.4,-0.88 1.24,1.08 0.53,-0.59 -1.54,-2.1 0.1,-1.82 1.83,0.96 1.51,-0.02 0.83,-1.77 0.67,0.94 0.3,0.61 0.13,1.09 -1.34,0.26 -0.3,0.67 1.02,0.37 0.24,1.7 1.44,1.01 -1.62,0.39 -0.31,0.78 2.49,0.78 0.67,-1.52 0.41,1.3 2.64,-0.06 1.85,2.92 -1.08,1.91 2.62,0.39 -0.11,2.29 1.18,-0.07 -0.29,0.94 0.76,1.78 -1.42,0.34 0.36,0.86 -0.19,0.67 0.53,0.6 0.78,-0.57 0.84,-0.27 1.22,3.41 -0.79,1.74 0.5,0.77 1.57,0.4 -0.51,-1.71 0.49,-1.34 0.92,0.78 0.35,1.59 2.09,1.19 -0.31,0.69 -2.87,0.57 0.94,1.81 -1.7,-0.51 -0.48,0.81 1.67,0.79 2.93,-0.74 1.22,0.3 -0.83,2.16 -4.07,5.12 0.16,1.42 -0.87,0.3 0.04,1.63 -1.53,2.13 1.45,0.99 1.27,4.06 -1.11,4.47 0.57,1.35 1.67,0.5 -0.26,2.04 2.08,3.249999 1.09,3.61 -1.4,6.32 0.21,1.84 -1.52,0.75 0.59,2.54 -0.84,2.25 0.14,2.68 -2.51,5.06 -5.36,-1.65 0,0 0.06,0.14 0,0 0.36,1.3 0.9,0.58 -0.28,2.16 0,0 -1.63,0.89 0,0 -1.12,-0.04 0,0 -0.25,0.11 0,0 -2.44,2.46 2.96,7.28 -0.63,2.52 0,0 0,0.32 0,0 0.59,1.46 -0.96,1.22 0,0 -0.21,0.08 0,0 -3.83,0.37 -2.45,4.47 -0.04,1.63 -2.11,2.88 0.15,3.1 0,0 -0.06,0.27 0,0 -1.14,2.05 0.66,1.06 0,0 0.32,0.24 0,0 0.33,-0.16 0,0 0.1,0.16 0,0 0.23,2.51 z"
title="Rangpur" id="BD-F" class=" mapsvg-region"
style="fill: rgb(10, 122, 62); stroke-width: 1.50535px;"></path>
</a>
<a href="#">
<path id="sylhetpath"
d="m 307.41233,149.66628 0.94,0.49 -0.25,0.49 2.94,0.36 1.5,1.04 1.65,0.22 0.76,-0.57 0.68,0.87 2.62,0.31 1.55,-0.61 0.97,1.45 1.48,0.71 2.37,-0.11 0.27,1.68 2.67,-0.17 0.94,-0.99 4.33,-0.43 0.76,-0.97 1.15,-0.19 0.1,-1.26 3.48,-0.32 0.14,0.6 -1.46,1.05 0.21,1.45 1.9,0.08 0.23,1.72 1.52,0.58 3.23,-1.6 1.58,-0.09 1.07,-2.03 3.44,0.78 0.83,-2.94 2.72,1.19 4.95,-1.46 3.07,0.47 5.13,-0.95 6.24,1.18 2.36,-1.5 1.55,0.84 4.14,-0.73 6.09,2.75 0.52,0.35 -0.54,1.39 2.64,0.91 1.86,1.52 1.48,-0.66 2.72,0.9 -1.88,0.32 1.99,2 7.63,2.54 1.41,-0.97 1.67,0.36 0.82,1.08 -0.88,1.61 2.1,0.1 0.54,0.7 5.39,1.37 -0.87,3.59 0.46,2.42 1.63,0.58 1.37,-0.95 1.24,1.96 -1.4,-0.24 -0.63,0.62 1.55,1.13 0.99,-0.01 0.94,-1.22 0.2,3.29 1.25,1.85 -0.89,0.45 0.46,1.8 -0.78,0.87 -2.01,0.33 -1.98,-0.66 -0.21,1.47 -1.29,0.35 -0.08,0.76 -2.16,0.08 -1.33,-0.41 -0.99,-1.21 -1.3,-0.47 -0.49,-1.03 -0.93,0.13 -1.87,-1.3 -1.49,-0.16 -1.99,-2.61 -1.43,1.57 -1.45,-0.1 -0.93,-0.11 -0.25,-0.73 -0.92,0.38 -0.44,1.13 0.94,1.99 -0.94,0.94 0.33,2.19 1.24,0.83 2.09,1.36 0.5,3.37 0.79,0.6 -0.63,2.05 0.71,0.71 -0.86,1.93 1.24,0.73 -3.33,4.92 -1.11,3.23 -1.42,7.91 -0.46,8.23 -4.9,-2.45 -0.49,-1.07 -1.64,1 0.53,1.22 -0.85,1.23 1.04,3.24 -0.55,0.8 0.86,1.43 -0.35,0.78 0.91,0.85 -0.56,0.9 -2.59,-0.24 -1.45,3.8 -3.25,1.42 -7.39,-0.87 -0.95,-1.03 -1.3,0.67 -1.13,-0.32 -0.89,0.69 3.16,4.35 -0.27,1.85 -1.96,-1.06 -0.04,-1.41 -1.59,-1.11 -3.44,2.1 2.01,6.97 -2.8,9.79 -0.2,3.01 -2.02,0.53 -0.91,-1.1 -0.62,-2.68 -2.83,-2.42 0.77,-0.46 -0.08,-1.2 -0.61,-0.79 -2.53,1.31 -0.74,-1.07 -1.55,-0.16 -4.47,-2.67 1.76,10.59 -2.86,0.1 -2.03,-0.97 -0.68,-1.09 -0.97,0.34 -0.7,-1.03 -1.56,-4.13 -0.07,-2.1 -1.83,1.63 1.14,2.74 -0.35,1.16 -0.97,0.12 0.02,2.01 -0.97,1.64 0.59,2.35 -0.77,1.4 -2.07,0.81 -1.1,-0.39 -0.56,0.39 0.18,1.47 -0.82,0.34 -3.96,0.08 -4.57,-1.28 -0.55,-0.93 -4.35,-0.02 -3.17,-1.34 -3.02,0.16 -0.09,2.89 1.82,3.05 -0.53,2.27 -1.55,2.16 0.36,3.16 -6.72,-2.21 0,0 -0.91,-0.46 0.13,-1.57 1.01,0.12 0.49,-2.41 -0.94,-1.98 -1.47,-0.19 0.32,-3.58 -1.19,0.28 -0.93,-0.7 0.27,-1.33 1.85,-0.67 -1.92,-0.66 0.02,-1.62 -0.85,-0.23 1.34,-1.97 0.33,-1.82 2.3,-1.1 1.03,0.34 -0.17,-1.59 -2.85,0.9 -0.67,-0.62 0.76,-1.76 1.12,0.58 0.2,-1.21 0.82,0.33 0.93,-1.05 0.79,0.03 -0.03,-3.04 -1.28,-0.65 -1.03,0.47 -1.25,1.7 -0.34,1.63 0.46,0.55 -1.09,0.21 -7.35,-1.4 -1.99,-2.57 0,0 1.89,-2.66 -0.7,-0.35 -2.82,1.03 1.22,-3.74 5.91,0.28 0.16,-1.49 -2.13,-3.1 0.36,-0.86 1.29,0.25 2.15,-1.46 -1.62,-2.78 -0.98,0.21 -0.82,-0.63 -0.18,-1.35 2.07,0.06 0.29,-0.84 -1.34,-4.78 -1.43,-0.08 0.81,1.34 -1.63,-0.63 -1.64,2.25 -0.17,-1.51 1.02,-0.53 -2.49,-0.68 -1.02,0.78 -0.64,-0.32 2,-2.43 0.76,1.43 0.68,-0.62 2.49,-2.98 1.89,-4.58 -3.36,-1.78 0.64,-0.91 -0.3,-1.24 -2.16,-0.86 -0.23,-1.48 1.78,0.9 -0.01,-0.86 0.89,0.02 0.19,-1.69 1.42,-0.02 0.81,-0.89 -1.01,-1.5 1.78,-0.31 0.06,-1.57 -1.85,-0.81 0.84,-0.99 -0.46,-1.61 -1.53,1.55 -2.47,-1.57 -1.7,0.86 -0.35,-0.74 -1.62,-0.02 1.03,-0.77 -0.41,-1.36 0.69,0.36 0.38,-0.74 -0.68,0.05 0.02,-0.73 -1.2,-0.14 -0.18,-0.6 0.92,-0.61 1.37,0.29 -0.12,-0.93 1.3,-0.93 -1.39,-0.84 1.4,-2.27 -0.17,-1.88 -1.54,-0.91 -1.01,1.4 0.3,0.81 -1.33,1.05 1.25,1.5 -1.49,0.22 -1.51,-2.35 0.59,-2 0.83,-0.64 -0.41,-0.81 -0.97,-0.04 -1.16,-3.82 -2.12,-1.64 -3.47,-0.54 -1.25,2.26 -0.9,-0.22 -0.44,-1.07 -1.3,0.39 -1.08,-2.19 -3.37,-0.08 -0.1,-2.55 -0.64,0.05 1.96,-0.87 0.37,-1.25 -1.05,-1.44 -1.57,-0.39 0.33,-3 -1.24,-1.68 0.52,-0.86 2.35,-0.99 -2.93,-0.86 -0.2,-3.37 1.39,-0.33 1.18,1.06 1.5,-0.48 -0.26,-1.86 -1.96,-1.81 0.59,-1.13 -0.25,-2.88 1.64,-0.72 -0.52,-1.45 0,0 10.68,-2.95 4.64,0.43 6.7,-0.66 4.5,0.53 2.08,-1 z"
title="Sylhet" id="BD-G" class=" mapsvg-region"
style="fill: rgb(255, 109, 109); stroke-width: 1.50535px;"></path>
</a>
</svg>
</div>
</div>
<span class="tooltip" id="Barisal">Barisal</span>
<span class="tooltip" id="Dhaka">Dhaka</span>
<span class="tooltip" id="Chittagong">Chittagong</span>
<span class="tooltip" id="Khulna">Khulna</span>
<span class="tooltip" id="Rajshahi">Rajshahi</span>
<span class="tooltip" id="Rangpur">Rangpur</span>
<span class="tooltip" id="Sylhet">Sylhet</span>
<script>
let barisalpath = document.getElementById("barrisalpath")
let dhakapath = document.getElementById("dhakapath")
let chittagongpath = document.getElementById("chittagongpath")
let khulnapath = document.getElementById("khulnapath")
let rajshahipath = document.getElementById("rajshahipath")
let rangpurpath = document.getElementById("rangpurpath")
let sylhetpath = document.getElementById("sylhetpath")
let barisal = document.getElementById("Barisal");
let dhaka = document.getElementById("Dhaka");
let chittagong = document.getElementById("Chittagong");
let khulna = document.getElementById("Khulna");
let rajshahi = document.getElementById("Rajshahi");
let rangpur = document.getElementById("Rangpur");
let sylhet = document.getElementById("Sylhet");
function showTextOnHover(path, textId) {
path.addEventListener("mousemove", (e) => {
var x = e.clientX;
var y = e.clientY;
textId.style.top = (y + 10) + "px";
textId.style.left = (x + 10) + "px";
textId.style.display = "flex"
})
path.addEventListener("mouseout", (e) => {
var x = e.clientX;
var y = e.clientY;
textId.style.top = (y + 10) + "px";
textId.style.left = (x + 10) + "px";
textId.style.display = "none"
})
}
showTextOnHover(barisalpath, barisal)
showTextOnHover(chittagongpath, chittagong)
showTextOnHover(dhakapath, dhaka)
showTextOnHover(khulnapath, khulna)
showTextOnHover(rajshahipath, rajshahi)
showTextOnHover(rangpurpath, rangpur)
showTextOnHover(sylhetpath, sylhet)
</script>
</body>
</html>
Sep 17, 2024
Show code