Why is my CSS not applying to a div element?
18:57 07 Jan 2026

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; }
html css