Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport",content="width=device-width", initial-scale="1.0">
<title>Colored Markers</title>
</head>
<body>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36
Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 5
Link to the challenge:
hi there, I see you posted some code but haven’t posted any question. Please describe what it is that you need help with.
im failing to set my second meta properly
you have some punctuation characters that are invalid
First one is the comma before the word content
When we write multiple attributes we use space in between, not comma
second is the double quotes after the word -width, it is not part of this statement
third is the double quote before the 1, again, it is not part of this statement
1 Like
Tell us what’s happening:
Describe your issue in detail here. kindly help me to set my 2nd meta
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name=viewport content=width=device-width initial-scale= 1.0>
<title>Colored Markers</title>
</head>
<body>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36
Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 5
Link to the challenge:
please do not open duplicate topics for the same challenge. I have merged the duplicate to this one.
now you are missing the double quotes that are supposed to be there.
When we set an HTML attribute we write it like this:
attribute=“value”
You had too many quotes before and now you have too little.
its still goin wrong for me
<meta name="viewport" content="width=device-width initial-scale=1.0">
hbar1st
October 17, 2022, 9:39pm
10
I’ve edited your code 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 (').
hbar1st
October 17, 2022, 9:39pm
11
check the content again. You need one comma after the device-width
system
Closed
April 18, 2023, 9:40am
12
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.