Friday 28 March 2014

HTML Attributes - एच टी एम एल सीखीये


एच टी एम एल Attributes

Attributes HTML elements के बारे में additional information उपलब्ध कराते है:

HTML Attributes

  • HTML elements मे attributes होते है।
  • Attributes किसी element के बारे में अतिरिक्त जानकारी उपलब्ध कराते है
  • Attributes हमेंशा start tag के अंदर लिखे (specified किये) जाते है ।
  • Attributes सामान्यत: name/value के जोडे मे होते है, जैसे : name="value"

Attribute के उदाहरण

HTML links को <a> tagके द्वारा लिखा जाता है। इनमें link address को href attribute्के अन्तर्गत लिखे (specified किया) जाता है ।
<a href="http://www.w3schools.com">This is a link</a>


Attribute Values पर हमेशा Quote लगायें

Attribute values को हमेशा दोनो ओर से quotes से बंद किया जाता है।
ज्यादातर Double style quotes (“) का प्रयोग किया जाता है पर single style quotes (‘) बी मान्य है।
नोट : कुछ विशेष परिस्थितियों में, जब attribute value मे स्वयं quotes होता है, तो यह आवश्यक है कि हम single style quotes (‘) का ही प्रयोग करें, जैसे:
name='John "ShotGun" Nelson'

नोट : Use Lowercase Attributes

Attribute names और attribute values case sensitive नही होते है, फ़िर भी  हमें हमेशा lowercase  (<p>) का प्रयोग ही करना चाहिए क्योकि World Wide Web Consortium (W3C)  भी HTML 4 में  attributes/attribute values में lowercase का प्रयोग करने को कहता है और  XHTML मे भी lowercase tags की ही आवश्यकता होती है।

Case sensitive

                             HTML tags case sensitive नही होते है यानि <P> भी <p> के समान ही होता है । पर यह आवश्यक है कि हम lowercase tags का ही उपयोग करें क्योकिं  HTML 4 में the World Wide Web Consortium (W3C) में lowercase आवश्यक है, और XHTML मे भी lowercase tags आवश्यक है ।


HTML Attributes Reference

हर HTML element के legal attributes की complete list की चर्चा हम आगे करेंगे।
Below is a list of some attributes that can be used on any HTML element:
Attribute
Description
class
Specifies one or more classnames for an element (refers to a class in a style sheet)
id
Specifies a unique id for an element
style
Specifies an inline CSS style for an element
title
Specifies extra information about an element (displayed as a tool tip)

0 comments:

Post a Comment