Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHanan Guthmy
Courses Plus Student 219 Pointscan somebody help me right a code still don't understand html and can i get help or advice please
can you help me and show me please
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title Ahmed Guthmy profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
2 Answers
Alejandro Narvaja
Courses Plus Student 7,340 PointsYou have this:
<title Ahmed Guthmy profile</title>
And the correct way is:
<title>Ahmed Guthmy profile</title>
Jonathan Grieve
Treehouse Moderator 91,253 PointsHello Hanan,
It's at moments like these it's best to take a little pause. Go back and watch the video again if you have to. You'll find that in the preceding video, the information you need to complete a code challenge will be in that video.
For example this code challenge you need to change the paragraph HTML element into a level 1 heading. Remember most tags have an opening and closing tag surrounding the content.
<p>content</p>
susmita vasavi devi konem
13,073 Pointssusmita vasavi devi konem
13,073 PointsHello Hanan, You missed the closing '>' of the opening <title> tag. The title should be inserted between the <title> and </title> tags, Just check it once.I think this help to you. Hanan HTML is the easiest language Just more practice will give you more command towards the language. Don't worry Hanan just practice more. Happy coding!