Before you begin: There
are many different ways to build a web page, and many different
software tools that can help you. We're going to use software
that likely came with your computer - a text editor to write simple
html code and an internet browser to view your code in action.
Make sure you have the software needed - it's
all free!
→A text Editor: For example, Notepad (PC),
Simpletext (Mac), or TextEdit (Mac OSX) are all free. You can
also use a program like Microsoft Word or AppleWorks. There are
also lots of html editors available - used specifically for writing
and viewing html code - BBEdit, Microsoft FrontPage, Macromedia
Dreamweaver, etc. - that are not free and vary greatly in thier
capabilities and interfaces.
→An Internet Browser: Most likely, Internet
Explorer and Netscape Navigator
came installed on computer your computer - if not you can download
them for free by clicking above, you may also want to check for
a newer version.
Also, it's not a bad idea to pick up a good html
guidebook. We'll just touch on the very basics of building a web
page, you may want to take your skills further! Ther are also
lots of great resources and tutorials on the web.
HTML BASICS:
What is html?
Html, or hyper text mark-up language,
is a universal mark-up language made up of simple tags that are
used to "mark-up" text and pictures to be viewed over
the web on any computer in any browser. Think of it like little
instructions telling a browser what to do, and where to put things.
What's a tag? A tag is
the little bit of code that all web browsers see and understand
as instructions - they are usually English words and abbreviations,
for example you would use the <title> tags for giving your
page a title, and the <p> tags for formatting a paragraph.
An important thing to remember about tags is they come in pairs
- an opening and closing tag. Take for example the title tag,
say the title of my web page is Studio 3d is GREAT!, I would write
the code like this:
<title> Studio 3d is GREAT! </title>
with the / before the word title in the closing
tag, make sense? Okay, let's get started!