HTML Headings
- HTML headings are defined with the
<h1>
to <h6>
tags.
<h1>
defines the most important heading. <h6>
defines the least important heading
HTML Paragraphs
- The
<p>
tag represents the paragraphs in an HTML document.
HTML Links
- Link is useful to go to another web page.
- >
<a>
is used to link web page. It is also called Ancher Tag.
href
attritube is path of destination web page
HTML Images
- Images can be added to HTML document by
<img>
tag.
src
attritube is path of image.
alt
attritube is alternate text. If image could not be loaded than alternate text will be displayed.
width
and height
attritubes are width and height of image.
0 Comments