style.css
index.html
body { font-family: sans-serif; padding: 20px; } div { background-color: deepskyblue; }
<!DOCTYPE html> <html> <head> <title>Content</title> <link href="/assets/styles/reset.css" rel="stylesheet"> <link href="style.css" rel="stylesheet"> </head> <body> <section> <div> <p>This is some text in the first element.</p> </div> <div> <p>And some more in the second element.</p> </div> <div> <p>Then a third one, too.</p> </div> </section> </body> </html>