Intermediate HTMLLesson 2: Intermediate Page Design The one-wide-column, straight-down-the-page look just doesn't cut it any more. Web page design has evolved to the point that visitors to a website have certain expectations of what a page will look like and how it will be laid out.
It is SO EASY to learn from others!
No one can be 100% original. Even William Shakespeare "borrowed" plots from other writers. Fortunately, borrowing ideas from other people's web pages is easy to do. That's because it's always possible to view the HTML source that goes into making a web page that you see in your browser. How to view the HTML source for this pageIf you're using Internet Explorer, click on View>Source in the menu up top. In Netscape, it's View>Page Source. Voila! An editable window should open up, displaying the HTML that makes up this page. Let's look at the components of the HTML source for this page:
We know what that is. Of course, if the page were using an external CSS, there'd just be a link in this section. <script language="JavaScript">and ends with </script>
This is a brief program, or script, written in Javascript. It's there because it makes the page do some things that
HTML alone can't do. We'll cover Javascript in Lesson 3, so let's ignore this part for now.
Not counting the text of the lesson itself, this page has sixteen different tables! And that's the secret to creating a professional looking page. TABLES are almost universally used on the web to format pages and partition them into sections. In the next section, we will look at how that's done. And don't forget, if you need to ask a question or want to add a comment, visit the Forum. |