Question:
When I try to make my html file green border, black background, and white text, the only thing that shows is a black screen.
Repl link:
You should remove the space in Personal website.html
, although it worked for me without doing that.
Try this CSS:
body {
color: white; /* font color is white */
border-color: #20c20e; /* website border color (green) */
border-style: solid; /* website border is a solid line */
border-width: 50px; /* the border is 50 px wide */
background-color: black; /* the body background is black */
}
https://esb678-github-html.coderelijah.repl.co/Personal%20website.html
4 Likes