html for this?
1. B.E Computer
. 1st Year
. 2nd Year
. 3rd Year
2. B.E Computer
. 1st Year
. 2nd Year
. 3rd Year
Answers
HTML stands for HyperText Markup Language. It is used for the creation of web pages. It is a Markup Language and not a Programming language. HTML describes the structure of a website. HTML elements are also known as tags. HTML tells the browsers how to display the content.
⠀
Unordered Lists in HTML can be created with the <ul> tag.
⠀
HTML CŌDE:
<!DOCTYPE html>
<html>
<head>
<title>Brainly</title>
</head>
<body>
<p>1. B.E Computer</p>
<ul>
<li>1st Year</li>
<li>2nd Year</li>
<li>3rd Year</li>
</ul>
<p>2. B.E Computer</p>
<ul>
<li>1st Year</li>
<li>2nd Year</li>
<li>3rd Year</li>
</ul>
</body>
</html>
The above code has been written in the <body> section of the HTML document.
⠀
The <ul> tag can take the attribute known as type, which specifies what kind of bullets do we want in the unordered list.