11Apr/22

HTML Quotation

HTML <q> for Short Quotations The HTML <q> element defines a short quotation. Browsers usually insert quotation marks around the <q> element. Example <p>aaravtechcorner.com goal is to: <q>Help Community learn computer science</q></p>   HTML <blockquote> forRead More…

21Mar/22

HTML Text Formatting

HTML also defines special elements for defining text with a special meaning. HTML uses elements like <b> and <i> for formatting output, like bold or italic text. Formatting elements were designed to display special types of text: <b> – Bold text <strong> – Important textRead More…

16Feb/22

HTML Attributes

Attributes provide additional information about HTML elements. HTML Attributes All HTML elements can have attributes Attributes provide additional information about an element Attributes are always specified in the start tag Attributes usually come in name/value pairsRead More…

06Jan/22

HTML List

HTML lists are defined with the <ul> (unordered/bullet list) or the <ol> (ordered/numbered list) tag, followed by <li> tags (list items): Example <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul>   Output

21Nov/21

HTML Images

HTML images are defined with the <img> tag. The source file (src), alternative text (alt), width, and height are provided as attributes: Example <img src=”aaravtechcorner.jpg” alt=”aaravtechcorner.com” width=”104″ height=”142″>   Output HTML Images HTML images are defined withRead More…

05Nov/21

HTML Links

HTML links are defined with the <a>  tag: Example <a href=”https://www.w3schools.com”>This is a link</a> The link’s destination is specified in the href attribute. Attributes are used to provide additional information about HTMLRead More…