Computer Science, asked by TbiaSamishta, 1 year ago

Write the html code to create following indentation effect :Apple pie, pudding, and pancake, All begin with An A

Answers

Answered by saranyaammu3
38

Answer:

<html>

<head>

<title>example </title>

</head>

<body>

<dl>

<dt>Apple pie,</dt>

<dd>pudding,</dd>

<dl>

<dd>and pancake,</dd>

</dl>

All begin with an A.

</dl>

</body>

</html>

Explanation:

Answered by Sidyandex
17

<html>

<head>

<title>example </title>

</head>

<body>

<dl>

<dt>Apple pie,</dt>

<dd>pudding,</dd>

<dl>

<dd>and pancake,</dd>

</dl>

All are begin with an A.

</dl>

</body>

</html>

HTML is a hypertext mark-up language used in computer programming.

It is required to create fonts, color, graphics and the hyperlinks to a web page.

A good html programming makes the web page look more attractive with the hyperlinks in them.

Similar questions