I am stuck on step 17 in the Basic Css:
The assignment was to nest a self-closing link element in the head element; having rel, type and href attributes. I found it difficult to nest in the head element. Please someone should help me out
**Basic Css: Step 17**
\ file: <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
</header>
<main>
<section>
<h2>Coffee</h2>
</section>
</main>
</body>
<html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
</head>
<body>
<header>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
</header>
<main>
<section>
<h2>Coffee</h2>
</section>
</main>
</body>
<html>
\ file: h1, h2, p {
text-align: center;
}
h1, h2, p {
text-align: center;
}
I Have found the solution to this problem⌠Initially, my href attributeâs value was spelled as âstyle.cssâ instead of âstyles.cssâ (the last âSâ in the styles was missing)
**Your browser information:**
User Agent is: Mozilla/5.0 (Linux; Android 7.0; Infinix X559C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36
Challenge: Step 17
Link to the challenge: