Webmaster Assignments by Mike
I hope you learn as much from these assignments as I have!There are several types of files in my folder. JPGs and animated GIFs were produced by Paint Shop Pro. HTML web pages were created with code typed into Microsoft's Notepad.There are four assignments so far. To go directly to the assignment description, click on one, two, or three. There also links to webpages that I updated or created for the school website and I used Microsoft Front Page.
The HTML Basics - - - - - - - - HTML is the lingua franca of the Net. It's a simple, universal mark-up language that allows Web publishers to create complex pages of text and images that can be viewed by anyone else on the Web, regardless of what kind of computer or browser is being used. Despite what you might have heard, you don't need any special software to create an HTML page; all you need is a word processor (such as SimpleText, BBEdit, or Microsoft Word) and a working knowledge of HTML. And lucky for all of us, basic HTML is dead easy. HTML is just a series of tags that are integrated into a text document. They're a lot like stage directions - silently telling the browser what to do, and what props to use. HTML tags are usually English words (such as blockquote) or abbreviations (such as "p" for paragraph), but they are distinguished from the regular text because they are placed in small angle brackets. So the paragraph tag is, and the blockquote tag is
. Some tags dictate how the page will be formatted (for instance,begins a new paragraph), and others dictate how the words appear ( makes text bold). Still others provide information - such as the title - that doesn't appear on the page itself. The first thing to remember about tags is that they travel in pairs. Every time you use a tag - say
- you must also close it off with another tag - in this case,. Note the slash - / - before the word "blockquote"; that's what distinguishes a closing tag from an opening tag. The basic HTML page begins with the tag and ends with . In between, the file has two sections - the header and the body. The header - enclosed by the and tags - contains information about a page that won't appear on the page itself, such as the title. The body - enclosed by and - is where the action is. Every thing that appears on the page is contained within these tags. So let's create a simple sample page, shall we? The first step, of course, is to create a new text document (remember, it should be saved as "Text Only" or "Plain Text" if you're using a word processor that's fancier than, say, SimpleText) and name it "anything.html" where "anything" is, uh, anything.
The first HTML assignment was to write the HEAD and BODY structure .
The second assignment was to set the background and text colors. .
The third assignment was to explore text formatting such as bold,italics,or changed FONT. You can also change the color and underline, but can you tell the "real" link?
This is the fourth assignment, but it should be updated each time we add a new assignment. .
You can send e-mail to me when you click here.