Computer Science, asked by aditya6637, 1 year ago

write the html code to write hello world bold-faced and underlined in the center of the page and in size 8​

Answers

Answered by Anirban1108
25
<html>
<head>
<title></title>
</head>
<body>
<font size = 8>
<center>
<U>
<strong> Hello World </strong>
</U>
</center>
</font>
</body>
<html>

Hope it helps.

Please Mark As the Brainliest
Answered by StaceeLichtenstein
7

Following are the html code is given below.

Explanation:

<html>

<head>

<title></title>

</head>

<body>

<font size = 8>

<b ><p align="center"><U>Hello World </u></p></b>

</font>

</body>

<html>

  • We used <b> tag for bolding the hello world text .
  • <u> for underline the hello word text .
  • <p align="center" > is used for aligning the text hello world in the center .
  • <font > is used for the size "8'.

Learn More :

  • brainly.in/question/26124
Similar questions