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 trialnicolasandrespeawhite
860 PointsHow to add the head and body elements to the page?
help me adding that
1 Answer
christiank
Front End Web Development Techdegree Student 3,427 PointsHello,
head Element: Inside the <head> Element you write informations that are only important for the browser. As exmaple, the CSS Files, Meta Informations or the Titel which you can see in the browser. This all are important for the browser. body Element: Inside the <body> Element you write the content from the website.
Here a example code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/stylesheet.css">
<title>Merry XMAS!</title>
</head>
<body>
<h1> Hello World!</h1>
<p> Merry Christmas and Happy Holiday!</p>
</body>
</html>
I hope I can help you. If you need help again contact me :)
Chris
nicolasandrespeawhite
860 Pointsnicolasandrespeawhite
860 PointsThanks Cris