Computer Science, asked by rakhshandakhan57, 4 months ago

write a code in HTML with background colour read of the page in the page it should mention in the first line how are you in bold in the second line it should be written as I am fine in italic and there should be an underline below fine​

Answers

Answered by vsvansh030
1

Answer:

<!DOCTYPE html>

<html>

<head>

<title>Your Answer</title>

</head>

<body  id="background" >

<style>

 #background{

  background-color:red;

 }

</style>

     <div id="main_div">

      <div id="line1">

       <h1><b> how are you?</b></h1>

      </div>

      <div id="line2">

       <h1><i>I am <u>fine</u></i></h1>

      </div>

     

</body>

</html>

Explanation:

Hope you understand plz mark me as brainliest

Similar questions