Computer Science, asked by shwetesh4415, 9 months ago

Write an HTML code to create following list 1 subject a) science b) maths
c) English

Answers

Answered by sheeb12ansari
1

Program:

To display the subject list as

science, math, English

Attachments:
Answered by shilpa85475
0

In HTML list, there are two types of list ordered list and unordered list.

When we use ordered list it will have numbers whereas when we use unordered list it will have bullet points.

Explanation:

<!DOCTYPE html>

<html>

<body>

<h2> List of Subjects</h2>

<ul>

 <li>Science</li>

 <li>Maths</li>

 <li>English</li>

</ul>  

</body>

</html>

Similar questions