Posts

Showing posts from October, 2023

CYBER ETHICS 18/OCT/2023

Image
 

ORGANISING AND ENCANCING WEBPAGES CLASS VIII

  Lists are an important part of a document. Whether it is a word document or pdf document or web document. It adds functionality to understand the contents clearly. In textbook there is list of questions, points are listed in numbers or symbols!   This information makes your text and document contents more attractive and readable. Types of Lists in HTML HTML support three types of lists basically. They are: Ordered (Numbered) Lists –  A list with numbers.  Unordered (Bulleted) Lists –  A list with symbols or bullets Description (Definition) Lists  – A list to write definitions or terminologies Ordered (Numbered) Lists To generate order lists in HTML following tags are used: OL:  The ordered lists always starts with <ol> and ends with </ol>.  LI:  LI tag specifies list items and written between <ol> and </ol>. For a number of the list items, the same number of <li> tags are required. Q1. Write HTML code to create...