jibbeiscool
@jibbeiscool
how do i change the complete background color cause i changed the background color but i cant change the complete background color like ther is still
HTML, CSS, JS
Coder100 Hello, to change the entire background color of the page, you will have to change the body's background.
Here, we have changed the background to red.
body {
background: red;
}
`3 years ago
how do i change the color or the font in a different file like if i creat a new file and want to add color to stuff in that file how
at this point im
HTML, CSS, JS
AmethystMoon1 Coder100 should get the cycles for this one, but I'll add to his answer. You need to change your acc info file to and html and import a stylesheet, like Coder100 said - BUT don't forget to make sure ALL your files are imported into index.html. Index.html is what get rendered.3 years ago
Coder100 Hello, your file will need a .html extension in order to render properly. Also, to style the page, just add `` and color it accordingly inside style.css.3 years ago