WebSite Name

  1. Once you know what your subject will be, choose a memorable but short name for it that you can use as a folder name. Use variable naming rules. IE, no spaces or "special" characters. Just alphanumeric and underscores. If you must use a dash, I'll allow them.
    Yes!
    A student team working on a website for the campus geology society might choose...
    
    <a href="http://warren.sewanee.edu/doejj01/CS284/SewaneeRocks"> Sewanee Rocks! </a>
    
    But NOT NOT NOT!
    <a href="http://warren.sewanee.edu/doejj01/CS%284/MyProject/Final3/"> CS 284 - Final Project </a>
    
  2. Name your main file "index.html" (whether a static file or a template)
  3. All of the links to files within your website should be relative to the current project and have descriptive names as well.
    Yes!
    <a href="register.html"> Register </a>
    
    <a href="newUsers/register.html"> Register </a>
    
    A big no-no!
    <a href="http://warren.sewanee.edu/doejj01/CS284/MyProject/SNL/register.html"> Register </a>