kenny5
May 13, 2022, 11:50pm
1
Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
\ file: <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width,init>
</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>
<link href="styles.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width,init>
</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;
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Linux; Android 12; SM-A326U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36
Challenge: Step 18
Link to the challenge:
Hello there.
Do you have a question?
If so, please edit your post to include it in the Tell us what’s happening section.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more information you give us, the more likely we are to be able to help.
kenny5
May 13, 2022, 11:57pm
3
file:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cafe Menu</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width,init>
I’m lost at the meta part
Your content
attribute seems incomplete given it breaks off after init
and has no closing parenthesis.
Might check what the step asks for again.
Add the following within the head element:
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).
kenny5
May 14, 2022, 12:06am
6
Thanks for helping. I got it now
1 Like
system
Closed
November 12, 2022, 12:06pm
7
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.