Let’s start to develop a web page design.
We need to create a folder in somewhere for the web page. I created a folder which is named myweb on Desktop. Then, open Dreamweaver-> blank page HTML, and save it in the created folder myweb. I named the first page index.html and page that is named as index, automatically set as start page. For example, when we visit a HTML web site while typing without pointing any specific page name, browsers open the page named “index” first (e.g www.colostate.edu is same as www.colostate.edu/index.html).
For using Dreamweaver, there is a very nice tool, that draw table, named “Layout table”. Click on Layout button (1) then change size of the table on properties window(2). I wanted width of 800px and height of the table is not necessary to specify.
Make sure when using layout table tool:
- You are in Design View (View > Design).
- You are in Layout mode, not Standard mode (View > Table Mode > Layout Mode or alt+F6).
After we create a Layout table, position the cross hair (+) pointer where you want to start the cell on the page, and then drag to create the layout cell (3). Advantage of layout table and cell is that we can change size and position after we put some objects(images and text) in.

I decided to have a header of 800px width and 200px height, so I made a image with that size. The header background picture is in myweb->images->header.png
I don’t know how to set layout cell background picture while using Dreamweaver, but I just type it in source code. To do that, Switch to code view (click “code” button from view choices), then: type background=”images/header/png” in the opening cell tag (td).
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<title>Home Page</title>
</head>
<body>
<table width=”800″ border=”0″ cellpadding=”0″ cellspacing=”0″>
<!–DWLayoutTable–>
<tr>
<td width=”800″ height=”200″ valign=”top” background=”images/header.png”><!–DWLayoutEmptyCell–> </td>
</tr>
<tr>
<td height=”417″> </td>
</tr>
</table>
</body>
</html>
Now, we need a menu, that includes links to pages-Home, About Me, Resume etc. When I create the header pic, I made left of the picture darker because I wanted a menu there. We can make this menu by unordered list.
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<title>Home Page</title>
</head>
<body>
<table width=”800″ border=”0″ cellpadding=”0″ cellspacing=”0″>
<!–DWLayoutTable–>
<tr>
<td width=”800″ height=”200″ valign=”top” background=”images/header.png”>
<ul>
<li><a href=”index.html”>Home</a></li>
<li><a href=”#”>About Me</a></li>
<li><a href=”#”>Profile</a></li>
<li><a href=”#”>My Resume</a></li>
<li><a href=”http://manlai302.wordpress.com” target=”_blank”>My Blod</a></li>
</ul> <!–currently, we’ve not made other pages, so left # on link>
</td>
</tr>
<tr>
<td height=”417″> </td>
</tr>
</table>
</body>
</html>
Of course, you may want the menu on other positions like button of header, top of header etc.
We may want to set background color to the table and overall page. To easily set background of the layout table, switch to design view and click on created layout table (make sure it’s not layout cell). Then, click on bg button of properties window(4) -> choose color from pop up color choice window or if picture background, do same thing on source code(we did once on header bg).
To set overall page background, Modify->Page Properties-> background color (if color based) or background picture(if picture).
I divided main content in 3 pieces. You can also play with it and try what you know.
Ok, that’s all for today. Hopefully, you got it easily, if not just try this easy thing.
If you want to see what we made today, visit to: http://www.business.colostate.edu/manlai.bat-orshikh07/myweb
and if you go to view->page source (of browser), you can see HTML code there.
Next time, I’ll post about CSS. After work with CSS, you’ll see much better designed page instead of this poorly looking page.