HTML images

 HTML Images
 

  HTML images are defined within the <img> tag.
 The source file (src), alternative text (alt), width and height are  provided as attributes
 
<img src=”image.jpg” alt=”LearnersTV.in” width=”104″ height=”142″>
 

Read More

HTML Lists

HTML Lists
HTML lists are defined with the <ul> (unordered/bullet list) or the <ol> (ordered/numbered list) tag, followed by <li> tags (list items)


<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>

<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

Read More