<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>HTML <map> Etiketi Örneği</title>
</head>
<body>
<p>
Test etmek için cihazların üzerine tıklayın!
</p>
<img src="https://prototurk.com/upload/img/cihaz.jpg" alt="Cihazlar" usemap="#ptmap">
<map name="ptmap">
<area shape="rect" coords="105,249,161,366" href="https://prototurk.com/upload/html/mobil.html" alt="Telefon">
<area shape="rect" coords="238,172,386,366" href="https://prototurk.com/upload/html/tablet.html" alt="Tablet">
<area shape="rect" coords="444,95,834,408" href="https://prototurk.com/upload/html/bilgisayar.html" alt="Bilgisayar">
</map>
</body>
</html>