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 trial

HTML Introduction to HTML and CSS (2016) Getting Familiar with HTML and CSS Test: Changing the Look of a Web Page

can 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

index.html
<!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>
styles.css

Hello 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!

2 Answers

Alejandro Narvaja
PLUS
Alejandro Narvaja
Courses Plus Student 7,340 Points

You have this:

  <title Ahmed Guthmy profile</title>

And the correct way is:

  <title>Ahmed Guthmy profile</title>
Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

Hello 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>