0
Screen colors
How can I change the color of the screen in Javascript?
1 Answer
0
<body>
<script>
document.querySelector("body").style.backgroundColor = "#444444";
</script>
</body>
https://code.sololearn.com/WL5S5kg6yGtA/?ref=app