Write an HTML program displaying unodered list of 20 students of class-vii
Answers
Answered by
0
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Unordered list</title>
</head>
<body>
<h2>Welcome To GeeksforGeeks Learning</h2>
<h5>List of available courses</h5>
<ul>
<li>Data Structures & Algorithm</li>
<li>Web Technology</li>
<li>Aptitude & Logical Reasoning</li>
<li>Programming Languages</li>
</ul>
</body>
</html>
Answered by
0
Explanation:
The HTML <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.
...
HTML List Tags.
Tag Description
<ul> Defines an unordered list
<ol> Defines an ordered list
<li> Defines a list item
<dl> Defines a description list
Similar questions