Computer Science, asked by dradeshkumar, 6 months ago

Type the HTML program to display “welcome to my web page” in black font and white background ?

Answers

Answered by sniperinparadox
1

Answer:

<!DOCTYPE html>

<html>

<body style="background-color: white;">

<h1>Welcome to my website</h1>

</body>

</html>

Explanation:

Similar questions