Computer Science, asked by CR7Appu, 1 day ago

Write an HTML program to display the given content “This is my first webpage” with
background color yellow.

Answers

Answered by velox
0

Answer:

<html>

   <head>

       <title>

           Webpage

       </title>

   </head>

   <body bgcolor="yellow">

       This is my first webpage

   </body>

</html>

Similar questions