Why is my CSS not applying to a div element?
I am learning HTML and CSS.
I created a simple HTML file and a CSS file, but the styles are not being applied to the div element.
HTML:
Hello World
CSS:
.box {
width: 200px;
height: 200px;
background-color: blue;
color: white;
}