Results 1 to 5 of 5

Thread: Howto Create a Simple but Nice Webpage from Scratch

  1. #1
    Join Date
    Nov 2006
    Location
    There and back again
    Beans
    1,097

    Howto Create a Simple but Nice Webpage from Scratch

    Howto Create a Simple but Nice Webpage from Scratch.

    Definitely in our modern age, it's about making thing simpler, a little bit easier. Now we see, where once we created, webpages already manufactured so that we can do the things most important to us, blog, show visitors our pictures. These webpages are nice but but if you are interesting in learning webdesign or want to have a custom design, this tutorial should be a good start. Since I just created an internet site, I'll be using it as an example.

    The basic law today is to use .html files for your wording and .css files for style. I use Gnome so the commands will be Gnome-specific, it shouldn't be too difficult to figure out on other desktops however.

    Create two new files. Create a new folder on the Desktop, pick a name for your webpage and enter the folder. In the folder Right-click and select "Create a Document" then "Empty File". Name one "index.html" and the other "default.css". Right-click on these new files and open them with the text-editor. I use Geany:



    I've included the example templates I created. They are well commented that may be easier to use on their own. You decide. I'll point out whats important:

    Creating the html

    We'll start with the example.html.

    You'll need to specify DOCTYPE at the top of the document. Strict is often used and since we're writting this is shouldn't be too much trouble to follow the rules.

    <html>
    signals the beginning of the html document. You'll notice for any given tag, there's a closing tag. There are a few exceptions like <br>. To close a tag use the forward slash in the tag: </html>

    I always like to comment my tags so that I can easily refer back to them without translating code. To do that prepend a comment with <!-- and append with -->

    <header>: define the meta data, and title, and css script. The header section uses meta data to alert search engines of the basic type of content that is in a webpage. It used to be real important to have a very complete meta section but I not sure they are used as much now. The example doesn't show search engine metadata, only shows what's needed. The title is what is display on the Titlebar in the browser. You'll also need to point where you css script is.

    The .html file refers to the css script for further formating. In the exampletutorial.html <div id="background"> refers to the css entry #background. These are often called CSS Boxes in the webdesign world. The css entry can define what <div id="background"> is. Color, shape, images... In the .html section, I put in and <a href section which essentially means nothing. Browsers need to have information in between div tags to work. Yes, I know, it's weird.

    The next section I input the image tabs - links to the other pages. I'll make these rollover tabs. The initial images will be defined here and I'll specify the rollover ones in the css script. You'll notice you can specify their location, use the absolute variable if you don't want the the browser trying to move the images. Also be sure to link them to the other .html files you will create. A basic webpage structure that a lot of people use is to put all html files in the base directory, then putting your images in an seperate image directory:



    Ok back on topic. You may have seen in the tab section that it's listed. <ul> is short for "unordered list" (meaning it doesn't show numbers), <li> is the "list item". The reason these are in here is to specify to the css script where to put the hover images later.

    The next div section defines the text columns, position, and finally the text!

    Creating the CSS

    Since the css style sheet ( example.css ) is pretty well commented, I'm not gonna take too much time explaining it. Since css can have hundreds of different functions and adding these functions can be used like script, it can become very encumbering to a new user. For now, just use the basic examples that I have given and work with those. These will give you the basic functionality of items like backgrounds and links and text formatting. If you want to learn more, the tutorial that I learned the from was this one:

    CSS from the Ground Up

    Some designers use text headers to define font size. These are basic formattings from the webs early days. You can further define them in css and some examples are given. Likely though, you'll just define one for the body, and use the example to format for special sections. I've heard several designers say they prefer to use the size spec (xx-large,x-large,large,medium,small,x-small,xx-small) as it seems to scale well between browsers and monitor sizes nicely.

    The section start #nav should be left alone. This section defines the rollover tabs. In the start #nav ids section is where you specify the rollover images.

    Create the images for the site with Gimp

    If you've never used gimp before you should read a little about it before you dive in. If you've used Photoshop, you'll find that gimp feels familiar. I'll just go over the basics and let you do all the creative work.

    First decide a size for your page. Monitor sizes keep growing, but if you have a larger monitor you may find that others will see your website in tunnel vision. To be safe, a site 1024x768 will suit most users.

    Sketching, if you're an artist is probably the best way to start a design. You can get your proportions and sizes as you'd like them then just scan the image. Alternatively, you can do a sketch with gimp. Both of these can be put in the background layer and used for reference.

    The amazing thing about gimp is layers. If you made a error, hopefully you made that error on a different layer as it can be erased or hidden. And sometimes layers that don't look nice at the given time later on in the process will.



    You might like to think about creating images seperately as often they too can become many layered deep. Importing them in later isn't that difficult.



    Guides are great and often necessary. I use them to create even sizes and items symmetrical (tabs are a perfect example). Place these before you start any heavy lifting.



    Since the guides are in place, doing the tabs is easy. Create a new layer, use black or white for the color, and fill in boxes you need. Then lower the opacity of the layer until you have the image you like. With the "Rectangle Select Tool" select each tab and "Copy Visible" in the Edit menu. Open a "New" file of equal size and paste the image into it. Save these as .pngs or high quality .jpgs.



    As you can see I used a background image that covered a good deal of the page, I experimented with a couple different ones, for this too you can use "Copy Visible" ability. Hide the others layers before you do so. Also be sure the image is specifid in the .css.

    That should be about it. With that you should about this time can have a beautiful looking webpage. This is what mine looked like when I finally released it:

    Attached Files Attached Files

  2. #2
    Join Date
    Nov 2006
    Location
    There and back again
    Beans
    1,097

    Re: Howto Create a Simple but Nice Webpage from Scratch

    Doh, updated the header.

  3. #3
    Join Date
    May 2006
    Location
    UK
    Beans
    663
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Howto Create a Simple but Nice Webpage from Scratch

    Good tutorial, maybe you should include example images in the zip so that the site looks good - or host it somewhere so people can see it...

    <br> should be <br /> in XHTML as well - every tag has to close...

  4. #4
    Join Date
    Nov 2006
    Location
    There and back again
    Beans
    1,097

    Re: Howto Create a Simple but Nice Webpage from Scratch

    thanks rich. I'm in the process of having the site put on a server, and will definitely let people know of it when its available.

    yes every tag does close, but I've noticed in the most expensive internet creation suites that this <br> is still widely used.

  5. #5
    Join Date
    Nov 2006
    Location
    There and back again
    Beans
    1,097

    Re: Howto Create a Simple but Nice Webpage from Scratch

    Fixed a few errors and basic cleanup.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •