Computer Science, asked by Paulomi, 10 months ago

design an HTML document to display a paragraph using both tag italic tag and underline tag in <HTML> ,< head>,< title>,< body> and <p> tag

Answers

Answered by ChinmayRajeev58
4

Explanation:

<html>

<head>

<title>Brainly</head></title>

<body bgcolor="aqua" >

<font color="blue" style="Times New Roman" size="5">

<p>

<b>Brainly</b> is an app for <i>students</i>. This app help students to solve there doubts. It is also allows us to <u>ask question or answer</u>anyone's question.

</font></p>

</body>

</html>


ChinmayRajeev58: Hope this helps you
brainly216918: Here thanks
Answered by Anonymous
8

Answer:

The below is a HTML document to display a paragraph using italic and underline tag:

<html>

<head>

<title> a paragraph using underline and italic tags </title>

</head>

<body>

<p><i><u> This will be displayed as a paragraph with italic text and all the text underlined. we should always end a tag in HTML. If we do not any tag in HTML then the output will not be shown. To save a HTML document in notepad one must click on save as and save it with a name, and we have to save it in a place.</u></i></p>

</body>

</html>

The output is displayed in the attachment:

Attachments:
Similar questions