سمة HTML <html> xmlns

❮ علامة HTML <html>

مثال

مستند XHTML بسيط ، مع الحد الأدنى من العلامات المطلوبة:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>

التعريف والاستخدام

تحدد السمة xmlnsمساحة اسم xml للمستند.

ملاحظة: السمة xmlnsمطلوبة في XHTML وغير صالحة في HTML 4.01 واختيارية في HTML5.

ملاحظة: لا يشتكي مدقق HTML الموجود على http://w3.orgxmlns عندما تكون السمة مفقودة في مستند XHTML. هذا لأن مساحة الاسم "xmlns = http: //www.w3.org/1999/xhtml" هي الافتراضية ، وستتم إضافتها إلى <html>العلامة حتى إذا لم تقم بتضمينها.


دعم المتصفح

Attribute
xmlns Yes Yes Yes Yes Yes

بناء الجملة

<html xmlns="http://www.w3.org/1999/xhtml">

قيم السمات

Value Description
http://www.w3.org/1999/xhtml The namespace to use (for XHTML documents)

❮ علامة HTML <html>