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

CSS How to Make a Website Beginning HTML and CSS Introduction to HTML and the Portfolio Project

please send page creation

szx

You might need to be a little more specific in what you are asking for.

1 Answer

Miguel Cano
Miguel Cano
5,181 Points
  1. Create a file (with any text editor) named after the page you'd like to create. Keep in mind that if it is going to be a home page you should name it index.html for best practices.
  2. Add some basic content to your new file. Basic page will look like follows:
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Web Page</title>
  </head>
  <body>
    <h1>Hello World!</h1>
    <p>Basic structure example</p>
    <footer>
      <p>Example 2015 all rights...</p> 
    </footer>
  </body>
</html>
  1. Double click index.html and watch your browser open it.