Create a simple HTML file named index.html
. Here's an example of a basic structure:
<!DOCTYPE html> <html> <head> <title>My Styled Page</title> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <h1>Welcome to My Styled Page</h1> <p>This is a paragraph.</p> </body> </html>
This HTML file links to a CSS file named styles.css
, which will contain all the styles.