HTML | Attributes of HTML By. Sunrise Computers
HYPERTEXT MARKUP LANGUAGE (HTML)
HTML | ATTRIBUTES
Attributes ये Elements का एक structure होता है | Attributes के जरिये Elements पर कुछ information दी जाती है | Opening Elements पर attributes को दिया जाता है | HTML के कुछ elements पर सिर्फ attribute_name ही होता है, लेकिन ज्यादातर Elements पर attribute_name=value इस प्रकार की जोड़ीयों में attributes को दिया जाता है | HTML के सभी Elements के लिए attribute होता है | एक Element पर एक या एक से ज्यादा attributes हो सकते है | Attribute की value को single('') या double quotes("") के बीच में लिखा जाता है, लेकिन कुछ attributes को single या double quotes की जरुरत नहीं होती है |
<ele_name> <attr_name1="value1", attr_name2="value2">content</ele_name>
HTML | ATTRIBUTES | REGULAR ATTRIBUTES
src, width and height Attributes for 'img' element
<img src="sunrise.png" width="150px" height="80px">
href Attribute for anchor element
<a href="http://www.sunrisecomputerclasses.com">Visit Sunrise Computer Classes</a>
sunrisecomputerclasses.com
Use Attribute's Value Without single('') / double("") Quotes
कुछ attributes ऐसे होते है जिनकी values को single('') या double("") qoutes क जरुरत नहीं होती है |
<a href="http://www.sunrisecomputerclasses.com">Visit Sunrise Computer Classes</a>
<br />
<img src="sunrise.png" width="150px" height="80px">

Comments
Post a Comment