Write an HTML code to create following list 1 subject a) science b) maths
c) English
Answers
Answered by
1
Program:
To display the subject list as
science, math, English
Attachments:
Answered by
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
Science,
4 months ago
Physics,
4 months ago
Math,
4 months ago
Math,
9 months ago
India Languages,
1 year ago