‎‎ويژگي هاي اچ تي ام الHTML Attributes -‎

Previous >    <Next  

‎ويژگي هايhtml اطلاعات زيادتري براي عناصرش تامين ميكند .براي ويژگي ها موارد زيرامورد ‎توجه قرار دهيد.

‎‎ويژگيThe href Attribute -‎ href

‎تگ‎<a>‎ يك پيوند يا هايپرلينك را مهيا ميكند .ويژگي‎href‎ آدرس url‎صفحه اي ‎‎كه بايد لينك انجام گيرد مشخص ميكند.

‎‎نمونه استفاده تگ‎<a>‎ با ويژگي ‎href

<a href="https://www.w3schools.com">Visit W3Schools</a>

‎‎مثال ـ نمونه برنامه استفاده از تگ‎<a>

<!DOCTYPE html>
<html>
<body>

<h2>The href Attribute</h2>

<p>HTML links are defined with the a tag. The link address is specified in the href attribute:</p>

<a href="https://www.w3schools.com">Visit W3Schools</a>

</body>
</html>

--(go to editor for change code and run)

‎‎در ارتباط با لينك اطلاعات بيشتري در بخش اختصاصي آن مشاهده ميكنيد.

‎‎ويژگيThen src Attribute -‎ src

‎تگ‎<img>‎ براي قرار دادن تصوير درصفحه بكار ميرود.ويژگي ‎src‎ ‎در تگ فوق مسير ‎ونام فايل تصويري كه بايد نمايش داده شود، مشخص ميكند .نمونه دستور مطابق زير

<img src="img_girl.jpg" width="500" height="600">

‎‎مثال ـ نمونه استفاده از تگ‎<img>

<!DOCTYPE html>
<html>
<body>

<h2>The src Attribute</h2>
<p>HTML images are defined with the img tag, and the filename of the image source is specified in the src attribute:</p>

<img src="img_girl.jpg" width="500" height="600">

</body>
</html>

--(go to editor for change code and run)

‎‎بدو روش آدرسurl را در ‎src‎ مشخص ميشود .مطابق زير :

  1. ‎absolute URL‎لينك بيگ تصوير خارجي كه در سايت هاي ديگري قرار دارد .بعنوان متال
  2. ‎src=‎"https://www.w3scools.com/images/img_girl.jpg‎"‎

    ‎تذكر ـ تصوير خارجي ممكن است تحت قانون كپي رايت باشد، واگر اجازه استفاده ازآنرا دريافت ‎نكنيد، ممكن است قانون كپي رايت را نقض كنيد .علاوه براين شما كنترل تصوير را نداريد، امكان ‎دارد بطور ناگهاني حذف يا تغييركند.

  3. relative URL‎آدرس نسبيurl در وبسايت ميزبان است .بدونurl شامل دامنه نميشود اگر بدون/ ‎شروع شود، يعني تصوير در محل صفحه جاريست مثلsrc=‎"imp_girl.jpg‎"‎ واگر با/ شروع گردد . ‎دامنه بايد ذكر شودمثلsrc=‎"/images/img_gril.jpg‎"‎

‎‎ويژگيهاي عرض وارتفاعThe width and height Attributes -‎

‎تگ تصوير داراي دو ويژگي‎width‎و‎height‎ ميباشد .اين دو ابعاد ‎تصوير را مشخص ‎ميكنند .مقدارآنها برحسب پيكسل اعلام ميشود .نمونه دستور مطابق زير:

<img src="img_girl.jpg" width="500" height="600">

‎‎مثال ـ نمونه استفاده از تصوير با ابعاد تصوير

<!DOCTYPE html>
<html>
<body>

<h2>Width and Height Attributes</h2>

<p>The width and height attributes of the img tag, defines the width and height of the image:</p>

<img src="img_girl.jpg" width="500" height="600">

</body>
</html>

--(go to editor for change code and run)

‎‎ويژگيThe alt Attribute -‎ alt

‎ويژگي‎alt‎ براي تگ تصوير ضروري ميباشد .در اين ويژگي متن كمكي براي عدم نمايش ‎تصوير ميتواند باشد .در هنگاميكه در نمايش تصوير اشكالي باشد، متن ظاهر شده وميتواند كمك كند.

‎‎نمونه تگ تصوير با ويژگي‎alt

<img src="img_girl.jpg" alt="Girl with a jacket" width="500" height="600">

‎‎مثال ـ نمايش تصوير با ويژگيهاي مطرح شده

<!DOCTYPE html>
<html>
<body>

<h2>The alt Attribute</h2>
<p>The alt attribute should reflect the image content, so users who cannot see the image get an understanding of what the image contains:</p>

<img src="img_girl.jpg" alt="Girl with a jacket" width="500" height="600">

</body>
</html>

--(go to editor for change code and run)

‎‎مثال ـ مشاهده كنيد كه چه اتفاقي مي افتد وقتي تصوير وجود ندارد.

<!DOCTYPE html>
<html>
<body>

<img src="img_typo.jpg" alt="Girl with a jacket">

<p>If we try to display an image that does not exist, the value of the alt attribute will be displayed instead. </p>

</body>
</html>

--(go to editor for change code and run)

‎‎ويژگي استايلThe style Attribute -‎

‎با‎style‎ ميتوان تركيبي از ويژگيهائي مثل رنگ ،فونت ،انداره وغيره را براي عنصر html‎اعلام نمود .نمونه استفاده استايل در تگ‎<p>

<p style="color:red;">This is a red paragraph.</p>

‎‎مثال ـ نمونه استفاده از‎style

<!DOCTYPE html>
<html>
<body>

<h2>The style Attribute</h2>
<p>The style attribute is used to add styles to an element, such as color:</p>

<p style="color:red;">This is a red paragraph.</p>

</body>
</html>

--(go to editor for change code and run)

‎‎در مورد‎style‎ دربخش هاي بعدي مطالب بيشتر خواهيم گفت.

‎‎ويژگي زبان ـThe lang Attribute

‎براي كمك به موتور هاي جستجو بهتر است هميشه ويژگي‎lang‎ را در داخل تگ ‎<html>‎‎قرار دهيد .اين ويژگي زبان صفحه را مشخص ميكند .

‎‎مثال ـ در مثال زير انگليسي بعنوان زبان ميباشد.

<!DOCTYPE html>
<html lang="en">
<body>
...
</body>
</html>

‎‎روش اعلام مقادير ويژگيهايHTML

‎پيشنهاد ميشود مقادير ويژگيها در داخل كوتيشن گذاشته شود .اما درhtml استاندارد لازم نيست ‎اين كار انجام شود، وبدون كوتيشن هم قابل قبول ميباشد. ‎با اين حالW3C پشنهاد ميكند كه مقاديربراي html در داخل كوتيشن باشد، اما براي اسناد XHTML ‎تقاضاي رعايت آنرا دارد .با اين حال اعلام مقادير با كوتيشن خوب منظور ميشودو بدون آن بد.

‎‎روش خوب اعلام مقاد با كوتيشن

<a href="https://www.w3schools.com/html/">Visit our HTML tutorial</a> 

‎‎روش بد اعلام مقادير بدون كوتيشن

<a href=https://www.w3schools.com/html/>Visit our HTML tutorial</a> 

‎گاهي اوقات بايد از كوتيشن براي اعلام مقادير استفاده كنيد .در مواقعيكه متن داراي بلنك باشد ‎وبخواهد براي مقدار ويژگي استفاده شود، بايد از كوتيشن استفاده شود .به نمونه زير توجه كنيد ‎كه نتيجهtitle درست نمايش داده نميشود.

<p title=About W3Schools>

‎‎مثال ـ نمونه نادرست بالا

<!DOCTYPE html>
<html>
<body>

<h1>About W3Schools</h1>

<p title=About W3Schools>
You cannot omit quotes around an attribute value 
if  the value contains spaces.
</p>

<p><b>
If you move the mouse over the paragraph above,
your browser will only display the first word from the title.
</b></p>

</body>
</html>

--(go to editor for change code and run)

‎‎استفاده دبل كوتيشن وكوتيشن

‎دبل كوتيشن عموما در اطراف مقادير ويژگيHTML قرار ميدهند .ولي از كوتيشن هم ميتوان استفاده ‎كرد .اما درحالتيكه مقدار مشخصه خود، داراي گيومه هاي دوگانه است لازم است ازهردودرآن استفاده ‎شود .مطابق زير

‎<p title='John ‎"ShotGun‎"‎Nelson' >‎‎

‎‎يا بصورت زير

‎<p title=‎"John 'ShotGun' Nelson‎"‎>‎‎

‎‎مثال ـ استفاده كوتيشن ودبل كوتيشن تركيبي

<html>
<body>

<h2>Single or Double Quotes?</h2>
<p>In some situations, when the attribute value itself contains double quotes, it is necessary to use single quotes:</p>
<p>Move your mouse over the paragraphs below to see the effect:</p>

<p title='John "ShotGun" Nelson'>John with double quotes</p>
<p title="John 'ShotGun' Nelson">John with single quotes</p>

</body>
</html>

--(go to editor for change code and run)

‎‎خلاصه فصل

  1. ‎‎همه عناصرHTML ميتوانند داراي ويژگي باشند
  2. ‎ويژگي‎href‎ در تگ‎<a>‎ آدرس URL را مشخص ميكند،كه به ‎صفحه آن بايد لينك شود.
  3. ‎ويژگي‎src‎ مربوط به تگ تصوير، مسير فايلي كه بايد تصويرآن نمايش داده شود ‎مشخص ميكند.
  4. ‎ويژگهايheight‎ و‎width تگ تصوير، ابعاد تصويري كه بايد نمايش داده شود مشخص ‎ميكنند.
  5. ‎‎ويژگي‎alt‎ مربوط به تگ تصوير ،متن جايگزين تصوير را تامين ميكند.
  6. ‎‎ويژگي‎style‎ براي اعلام مقادير فونت ،اندازه، رنگ و...عناصر استفاده ميشود .
  7. ‎‎ويژگي‎lang‎ در تگ‎<html>‎ كشور وزبان براي صفحه اعلام ميكند.
  8. ‎‎ويژگي‎title‎ اطلاعات اضافي براي عنصري درصفحه را تعريف ميكند .

‎‎مرجع كامل ويژگيهايHTML

مرجع كامل ويژگيهاي HTML


Previous >    <Next