Tag Archive | tutorials on html

HTML | Tags | Paragraph & Align

Paragraph: The <p> element offers another way to structure your text. Each paragraph of text should go in between an opening <p> and closing </p> tag. Elements can all carry the universal attributes: align class id style title dir lang xml:lang <DOCTYPE HTML– <p> This is First Paragraph </p> <p> This is Second Paragraph </p> […]

HTML | Attributes

Tag Attributes: Tags support one or more attributes. These attributes are included in attribute_name=”attribute_value” <p align=”2″> Rules for Attributes:  Any attributes in an HTML tag need to appear after the HTML tag name.  The attribute name must be followed immediately by an equal sign (=).  The attribute value needs to come immediately after the equal […]