Write an HTML program to display the given content “This is my first webpage” with
background color yellow.
Answers
Answered by
0
Answer:
<html>
<head>
<title>
Webpage
</title>
</head>
<body bgcolor="yellow">
This is my first webpage
</body>
</html>
Similar questions