I’m not sure how to tackle this one.
I followed the instructions saying We have created a separate styles.css file for you and switched the editor view to that file.
I was still confused on what other styles I was supposed to put, and I ended searching for the answers to know how I was supposed to answer it. I clicked on the button for the styles.css. It showed me an empty page.
Did I do something wrong?
This is my code so far:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<style>
h1, h2, p {
text-align: center;
}
</style>
</head>
<body>
<main>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
<section>
<h2>Coffee</h2>
</section>
</main>
</body>
</html>
