الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h2>Map with all type of shapes</h2> <p>You can click on any area in the image!</p> <!-- "demomap" مع تحديد أنها تستخدم خريطة إسمها <img> هنا قمنا بإضافة صورة بواسطة الوسم --> <img src="/tutorials/html/tags/map/shapes.PNG" width="247" height="88" alt="Shapes" usemap="#demomap"> <!-- التي تستخدمها الصورة "demomap" هنا قمنا بتعريف الخريطة --> <map name="demomap"> <!-- الوسم التالي يشير لمكان المربع في الصورة --> <area shape="rect" coords="16,20,65,70" alt="Rectangle" href="/tutorials/html/tags/map/rectangle.html"> <!-- الوسم التالي يشير لمكان المثلث في الصورة --> <area shape="poly" coords="97,72,151,72,123,19" alt="Triangle" href="/tutorials/html/tags/map/triangle.html"> <!-- الوسم التالي يشير لمكان الدائرة في الصورة --> <area shape="circle" coords="204,46,28" alt="Circle" href="/tutorials/html/tags/map/circle.html"> <!-- الوسم التالي يشير لمكان الأجزاء المتبقية في الصورة --> <area shape="default" href="/tutorials/html/tags/map/background.html"> </map> </body> </html>