ARTICLE AD BOX
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:
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> </head> <body> <div class="box">Hello World</div> </body> </html> CSS: .box { width: 200px; height: 200px; background-color: blue; color: white; }