Computer Science, asked by rakhshandakhan57, 1 month ago

In html, write the text"India is a republic country and we are indians."text should be underlined with center alignment​

Answers

Answered by anindyaadhikari13
3

Answer:

This is the required HTML c∅de for the given question.

<!DOCTYPE html>

<html>

<head>

<title>HTML</title>

<meta charset="UTF-8"/>

</head>

<body>

<u>

<p align=center>

India is a republic country and we are indians.

<p>

<u>

</body>

</html>

Note:

  • To make the text underlined, the <u> tag is used.
  • To make the text alignment center, i have written the text inside <p> tag and then changed the alignment using align attribute.

See the attachment for output ☑.

Attachments:
Similar questions