Type the HTML program to display “welcome to my web page” in black font and white background ?
Answers
Answered by
1
Answer:
<!DOCTYPE html>
<html>
<body style="background-color: white;">
<h1>Welcome to my website</h1>
</body>
</html>
Explanation:
Similar questions