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 How to Make a Website Creating HTML Content Organize with Unordered Lists

Hello. question? In future if I want to create my own pages, can I use workplace or any other application? Thx

Hello. question? In future if I want to create my own pages, can I use workplace or any other application?

Thx

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </nav>
    </header>
    <section>
    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

3 Answers

John Barhorst
John Barhorst
9,648 Points

I like sublime text 2 too. Just a quick tip if you grab that one: When you start a page, go to View, and down to Syntax. Select HTML for your html pages and CSS for your CSS. Then for those pages it will behave much like workspaces did.

I actually started doing all my Treehouse class work inside of Sublime Text 2 instead of workspaces, just so that I could be used to how it works. Just copy and paste the works you've already completed into new pages. Please note that this is a little bit trickier, because I also had to set up WAMP server in order to do previews. It's another hoop to jump through, but I recommend it since you'll probably want to know how to do that in the future anyways.

Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

Yes, you can use workspaces and yes you can use other programs. If you're to the point that you are ready to publish your website you would need to save files from workspaces somewhere else.

You should find a text editor that you like. I use Sublime Text 2 and I've used Notepad++ (totally different than Notepad that comes with Windows), but there's also Atom, Brackets, and other options. From what I've seen, Sublime Text seems to be pretty popular.

Once you have a text editor, create your html and css files in it, save them to a folder for your webpage. Previewing your webpage is as easy as opening the folder for your webpage and double clicking on your index.html file.

Hope that helps.

I pretty new, just beginning to learn how to use html :) Thanks very much for your answer. I have tones to learn but day by day it will grow. I appreciate your help.

Jean

thanks very much for infos