Tuesday, December 25, 2018

List.

LIST:-

<html>
<body>

<h2>An Unordered List</h2>

<ul>
  <li>Akash</li>
  <li>Soni</li>
  <li>Venu</li>
</ul>

<h2>An Ordered List</h2>

<ol>
  <li>Akash</li>
  <li>Soni</li>
  <li>Venu</li>
</ol>

</body>

OUTPUT:-


  • Lists are defined with the <ul>(unordered list) or the <ol> (ordered list) tag, followed by <li> tags (list items).

No comments:

Post a Comment

Internal Javascripts

Internal Javascripts :    The script code can be written directly into the HTML document. script code is placed in header of the docume...