I’m making a website without using anything other than html and headers can’t be seen on the screen because of the background. So, I wanted to make them white instead of black. Can I do it without using anything besides html?
>Solution :
Is this what you are trying to achieve?
<html>
<header style="background-color:black; color:white">
Header
</header>
<p>content</p>
</html>