Computer Science, asked by NEONxALPHA, 3 months ago

help me please
it's very important

Attachments:

Answers

Answered by anindyaadhikari13
1

Required Answer:-

Question:

  • Write the HTML co de for the given list.

Solution:

Here is the answer.

<!DOCTYPE html>

<html>

<head>

<title>OL and UL Example. </title>

</head>

<body>

Types of Computer:

<ul>

<li>Mainframe Computer.

<li>Mini Computer.

<li>Personal Computer.

</ul>

Types of Languages:

<ol>

<li>Low Level Language.

<li>Assembly Language.

<li>High Level Language.

</ol>

</body>

</html>

Note:

  • There are two types of lists, ordered list and unordered list. You can see that the list of computers are unordered list whereas list of languages is an ordered list.
  • Also note that, <li> tag has no closing, it is an empty tag. LI stands for list item. Here, the list items are the three types of computers and languages.

Output is attached. Check it out.

Attachments:
Similar questions