Computer Science, asked by trisha87, 1 year ago

create HTML for ordered lists of five fruits

Answers

Answered by tejasgupta
32

Heya !!

What is HTML??

→ HTML stands for Hyper Text Markup Language. It is a markup language which means it is used for making web pages. It is the primary language used to create web pages. Other popular languages used in web designing and making it dynamic are JavaScript (JS), CascadingStyleSheets (CSS), and server-side languages such as PHP, ASP, AJAX and so on.....

I'm giving the code in the notepad file with screen-shots......

Hope it helps you...... !!

Attachments:
Answered by Anonymous
32

Hi

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>Fruits List</title>

</head>

<body>

<ol>

 <li>Apple</li>

 <li>Pears</li>

 <li>Oranges</li>

 <li>Apricots</li>

 <li>Banana</li>

</ol>

</body>

</html>

Attachments:

tejasgupta: What's that lang attrib of html tag??
tejasgupta: What is
tejasgupta: meta tag??
tejasgupta: What is Doctype html ??
Similar questions