Question
2.4.4 Bookmarks
index.html
Output
Test Cases
Docs
Assignment
Grade
More
Test Cases
2/5
Pass Test Message
You must have 3 "a" tags on your page Great!
Your "a" tags must have an href attribute Great!
The first "a" tag must have an href of "https://codehs.com" Make sure you don't have extra spaces
The second "a" tag must have an href of "https://codehs.com/sandbox" Make sure you don't have extra spaces
The third "a" tag must have an href of "https://codehs.com/my_courses" Make sure you don't have extra spaces
2.4.4 Bookmarks index.html Output Test Cases Docs Assignment Grade More Test Cases 2/5 Pass Test Message You must have 3 "a" tags on your page Great! Your "a" tags must have an href attribute Great! The first "a" tag must have an href of "https://codehs.com" Make sure you don't have extra spaces The second "a" tag must have an href of "https://codehs.com/sandbox" Make sure you don't have extra spaces The third "a" tag must have an href of "https://codehs.com/my_courses" Make sure you don't have extra spaces
index.html
Output
Test Cases
Docs
Assignment
Grade
More
Test Cases
2/5
Pass Test Message
You must have 3 "a" tags on your page Great!
Your "a" tags must have an href attribute Great!
The first "a" tag must have an href of "https://codehs.com" Make sure you don't have extra spaces
The second "a" tag must have an href of "https://codehs.com/sandbox" Make sure you don't have extra spaces
The third "a" tag must have an href of "https://codehs.com/my_courses" Make sure you don't have extra spaces
2.4.4 Bookmarks index.html Output Test Cases Docs Assignment Grade More Test Cases 2/5 Pass Test Message You must have 3 "a" tags on your page Great! Your "a" tags must have an href attribute Great! The first "a" tag must have an href of "https://codehs.com" Make sure you don't have extra spaces The second "a" tag must have an href of "https://codehs.com/sandbox" Make sure you don't have extra spaces The third "a" tag must have an href of "https://codehs.com/my_courses" Make sure you don't have extra spaces
Answers
GPT-5 mini
Your tests show you have 3 anchor tags and they have href attributes, but the href values don’t exactly match the expected strings (likely extra spaces, a trailing slash, or different text). The tests require the href attributes to match exactly.
Use this exact sample HTML (copy-paste the href values exactly as shown):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bookmarks</title>
</head>
<body>
<a href="https://codehs.com">CodeHS</a>
<a href="https://codehs.com/sandbox">Sandbox</a>
<a href="https://codehs.com/my_courses">My Courses</a>
</body>
</html>
Troubleshooting tips
- Make sure there are no leading or trailing spaces inside the quotes: href="https://codehs.com" not href=" https://codehs.com "
- Don’t include a trailing slash unless the expected string has one (so use https://codehs.com, not https://codehs.com/)
- Match the exact path and casing: /my_courses not /My_Courses
- Use straight double quotes around the href value (") or single quotes (') — but the value must be exact
If you want, paste your current index.html here and I’ll point out the exact fix.
Use this exact sample HTML (copy-paste the href values exactly as shown):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bookmarks</title>
</head>
<body>
<a href="https://codehs.com">CodeHS</a>
<a href="https://codehs.com/sandbox">Sandbox</a>
<a href="https://codehs.com/my_courses">My Courses</a>
</body>
</html>
Troubleshooting tips
- Make sure there are no leading or trailing spaces inside the quotes: href="https://codehs.com" not href=" https://codehs.com "
- Don’t include a trailing slash unless the expected string has one (so use https://codehs.com, not https://codehs.com/)
- Match the exact path and casing: /my_courses not /My_Courses
- Use straight double quotes around the href value (") or single quotes (') — but the value must be exact
If you want, paste your current index.html here and I’ll point out the exact fix.