Creating A Web Page Using HTML, XHTML, and CSS: The Basics: Mary L. Lanigan, PH.D
Creating A Web Page Using HTML, XHTML, and CSS: The Basics: Mary L. Lanigan, PH.D
Creating a Web
Page Using HTML,
XHTML, and CSS:
The Basics
Preface
In this module, you will create a web page. The web page will look like a mini-resume.
After completing all the exercises within this module, your page will look something like
the example on the next page.
In order to create a web page, you need to be familiar with a browser. There are a number
of browsers available-- the two most common are Microsoft Internet Explorer and
Mozilla Firefox. It is recommended that you use Explorer to complete this module in
order to reduce confusion. Some browsers do not contain all the necessary options to
complete the exercises within this module. Thus, it is critical you use Explorer.
Browse
brings up this
box so you
can find the
file you wish
to open.
When you create web pages, sometimes you may elect to open the file by clicking the
browse button. By doing so, you don’t have to be connected to the Internet to view these
files. For now, close your browser and proceed to the next exercise.
Prior to building a web page, you are asked to create a data sheet. The data sheet
information will be used to create your Internet homepage. This step is not required to
create web pages; however, it is needed to complete this module's exercises.
⇒ work address;
⇒ professional experiences;
Please Note: This information will be posted on the Internet for all to
see. Only use information you are willing to make public and that is
professional.
Mary L. Lanigan
Dr. Lanigan is a four-time ISPI Award of Excellence winner for her evaluation research (1999), book (2001) and
CD training workshops (evaluation CD in 2005 and performance technology CD in 2007). As an Associate
Professor at Governors State University, she teaches various performance improvement classes and is the recipient
of three Faculty Excellence awards. Dr. Lanigan has presented papers at national and regional conferences
sponsored by the International Society of Performance Improvement and the American Society of Training and
Development. She has written articles for Performance Improvement, Performance Improvement Quarterly, The
Journal of Insurance Trainers and Educators, and the International Journal of Intercultural Relations. Her doctorate
is from Indiana University, specifically, the Instructional Systems Technology program and her Masters degrees
are in Educational Psychology, Communication, and Instructional Systems Technology.
Address:
Department of Communication & Training
College of Arts and Sciences
Governors State University
University Park, Illinois 60466
Professional Experiences:
Professor/Governors State University
Trainer/Publishers Circulation Fulfillment
Trainer/First Midwest Bank
Educational Background:
Ph.D., Instructional Systems Technology, Indiana University
M.S., Instructional Systems Technology, Indiana University
M.S., Educational Psychology, Indiana University
M.S., Communication, Illinois State University
B.A., Speech Communication, University of Illinois, Champaign-Urbana
To learn more information about earning a degree in instructional design and training (also known as performance
improvement or performance technology), click on the links below.
To obtain specific information such as class syllabi, plan of study examples and more, then go to: Human
Performance and Training
To obtain specific information about admissions and fees, then go to: Governors State University
To see what web source code looks like, go to any web page on the Internet. In the
Internet Explorer browser: click View; click Source. For the debrief below, use the codes
from my web page example that I asked you to print out on page 2 of this document.
</style>
</head>
<body>
1. You are going to create your web page using Notepad ++, which is NOT the
Notepad that is under the Accessory folder on your computer. Instead it is
advanced software that indicates the code in the red and blue colors. In regular
Notepad, all contents and coding are in black; this makes coding more difficult.
2. You will also need a picture of yourself that has been saved as a .jpg image.
3. Create a folder on your hard drive and call it htmlexercise and put your picture in
this folder. You will also be saving your code and anything else you put on your
web site in this folder.
Once you have completed the above three steps you are ready to begin coding.
Writing Code
Remember, the end result of this exercise is to create a web page that looks similar to the
example on the Preface pages of this module. The only difference is you will be
substituting your information and images for mine.
Step 3: Next, you are going to type the head information. The heading contains
coding that does NOT appear on the web page. Similar to the Document
Type Definition section, it communicates information to the browser. In
the example below, it is communicating:
• the content type; and,
• the title of the web page.
Go ahead and type the code exactly as you see it, including the meta and
content tags and information.
The title is very important because the browser uses this information when
users search for web sites. For example, if someone did a Google search
on Mary’s Homepage, then this page would be on the top of the search
results. As such, you may want to title your page with your first and last
name.
Note: Notice how the title has an open title tag and a closed title tag.
Open tag
Closed tag
Almost all XHTML coding has open and closed tags such as this. If you
forget to open or close a tag, then errors will occur in your web page.
Tags Purpose
<head> </head> To create and end a heading.
<a href= “filename”> </a> This code indicates a link to another file.
Step 4: Following the title you want to complete the heading section by putting in
all these CSS codes. Type the codes in as illustrated and then I’ll explain
each.
NOTE: You have just embedded your styles into your web document. Style sheets can
be internal such as the one you just created or external. External style sheets reside in
their own files (that end with .css). If you were using an external style sheet, you would
not put in all those style codes into your web page. Instead you would create a link to the
external style sheet.
For example:
<link rel="stylesheet" href="../generalLayout.css" type="text/css" />
Let’s review the internal style codes that you entered into your web page.
Notice that we started the section with: <style type=”text/css”>. This code tells the
browser that from the open style tag to the closed style tag, we are communicating style
codes.
Whenever you see /* and */ between text that is a statement or note to the web designer.
In other words, if you want to write a reminder to yourself, but you don’t want the
browser to read it, then you can type in words as long as you bookend the wording with
/* and */.
This is just a note to the web editor that the styles are being defined below.
Whenever you indicate a style, you begin the code with a { and end it with a }.
For example: *{
padding:0;
margin: 2;
}
This style is communicating to the browser that there is no padding property around the
four sides of the web page; hence, padding:0. But we are giving margin space or white
space around the border at a 2.
Note: A web page consists of a larger box called a margin. Inside that box is an inner box
called a border. Inside the border is a smaller box called the padding.
Our next style code is defining the body of the web page.
For example:
body {
font-family: Arial, Helvetica, sans-serif; /*Note: this line tells the browser the order to
search for fonts*/
font-size: 1em;
line-height: 1.25em;
color: black;
background-color: #ccccff;
height: 100%;
}
Here we are telling the browser to look for the Arial font first to display the body text. If
the browser can’t find Arial, then it will look for Helvetica next and any sans-serif font
after that. Next we are indicating the default font-size; line-height, and text color.
Subsequently, we are indicating the background color using a hex code such as #ccccff,
which is a type of bluish-gray color.
NOTE about COLOR: Most colors use a number sequence in order to communicate to
the browser what the colors are. There are only 16 predefined colors were you can write
out the color name. Those colors are:
• Aqua
• Black
• Blue
• Fuchsia
• Gray
• Green
• Lime
• Maroon
• Navy
• Olive
• Purple
• Red
• Silver
• Teal
• White
• Yellow
If you are not using these colors, then you can go to the web site below to locate the hex
color codes for all other possible colors.
http://html-color-codes.com/
The a:link indicates an active link. As you can see, we are telling the browser we want
all active links in maroon color and we want them bolded.
The a:visited indicates a visited link. After a user clicks on the link, the color will
change from maroon to purple.
The a:hover indicates the color when a user hovers over a link but doesn’t click the link.
In this case the link turns yellow and the background color around the link turns a tan
color.
Notice on all the styles we discussed so far that none of them begin with periods. In other
words, body and a:link are not preceded by periods. These styles are elements common to
all browsers. There are times when you may wish to create your own made-up elements.
To do so, you want to place a period in front of your made-up element.
For example: .style1; .style2; .style3; and, .style4 are all made-up elements. What this
means is when I place a style1 in my body code (which you will see when we get to the
body), it tells the browser to override the default and make my font 48 and make it bold.
Technically, since the font-family indicated in style1 is the same as the default, you don’t
really have to list that in the code. However, if you wanted style1 to use Times New
Roman, then you could have written the font-family as Times New Roman.
.style1 {
font-size: 48px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.style2 {
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
}
.style3 {
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
}
.style4{
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
As you can see, style 2 has a reduced font size and style 3’s font is further reduced.
Notice in style4, not only do we want the font-size 14, but we are also commanding the
browser to center the text.
To see how these styles work, let’s review the top portion of my web page.
The next grouping of style codes are telling the browser how images should appear in
relation to the text.
* Set the generic styles for display of images through the use of dependent classes */
img.leftAlign {
background-color: white;
border: solid 15px #006699;
float: left; /* Textual content will float to the right of the image. */
padding: 10px;
margin: 10px 25px 10px 5px;
}
img.centerAlign {
background-color: white;
border: solid 1px #b09c9d;
text-align: center; /* Image will be centered. Text above and below image. */
padding: 10px;
margin: 10px 5px 10px 25px;
}
Here we are telling the browser to align the image left of the text. Thus, the text will
appear to the right of the image. We are also indicating that we want a border around the
image. We are indicating that the border be solid, 15 pixels, and that the color is
#006699, which is a bluish color.
The image will float to the left of the text and have a padding of 10 pixels and a margin
of 10, 25, 10, and 5 around, which is, top-right-bottom-left.
The second example is similar to the first, but the image is centered. Notice the border
and border color are also different.
If you return to the previous page, you’ll see the image is to the left of the text. Here is
how the body code incorporates the style.
h1 {
color: navy;
text-align: center;
}
h2 {
color: navy;
text-align: center;
}
</style>
</head>
The h1 and h2 are pre-defined elements. There are six heading elements. Similar to the
other codes, here I have created specific features for each heading. For example, in
heading one I tell the browser to list h1 text in navy and to align the text to the center. By
default, the h1 heading will appear as 24 point font and h2 will be 18 point. The h2
heading is also coded to appear as navy and centered.
Notice after I get done coding all the styles, I close the style section with a closed style
tag, that is, </style>. This tells the browser I am done listing my styles.
Next, I close the head section with a closed head tag. This tells the browser I am done
with the head section.
<body>
<body>
<p><br /><br /><br /></p>
After adding three break elements sandwiched between open and closed p
elements, next you will create your first header. Type the h1 code just as it
appears above. After the h1 code, type in your name and then close the
h1 tag as illustrated above. Afterwards, add three more break commands
along with the p elements as illustrated above.
Note: The browser doesn’t recognize hard returns after codes. As such,
you could place the break elements immediately following the h1 closed
tag and still get the same result. However, it is recommended to create
space to help you visually see what you created. Otherwise, you can get
lost in the codes.
Before viewing our work, let’s add an image and some text. To make this
process a little less time consuming, you are going to enter the appropriate
codes and then copy and paste the text from your Data Sheet completed in
Exercise 2. You are also going to use the image of yourself that you saved
in the htmlexercise folder.
Next type the image source code as illustrated on line 134. However,
instead of typing me.jpg use the name of your image. So if you saved your
picture as: mypic.jpg, then type that name between the quotes.
Notice in the image source code line, you have to indicate an alt. The alt is
the text name of your image. This text appears when the user hovers over
the image and it is used for the disabled. For my image, I indicated the alt
to equal “Mary.” Following the alt are the width and height of the image.
I’m indicating my picture size to be 200 by 100 pixels. You can adjust
these sizes to see how the picture varies when you change the height and
width. After playing with the image height and width, next you will begin
your first line of text. Type the following code:
<p class=“style3”>
Notice: When indicating the style within the body of the web page code,
you do NOT put the period in front of the style number. Simply type the
style number as illustrated above.
Do you remember from our coding style sheets what we are telling the
browser to do when we indicate style3?
The <p part of the code acknowledges the beginning of a new paragraph
and the class=“style3” indicates that we are using the style3, which is font
size 14. After the greater sign, copy and paste the information you typed
on your data sheet regarding your career accomplishments.
On the next line, add three break elements sandwiched between an open
and closed p element.
When the Save As box appears, give your page a file name. Notepad++ automatically
saves your document as .html. As such, you can either click save, or if you want your
document to be saved as an .htm file, then you need to add the file extension in the file
name. For example: template.htm.
Note: Both .html and .htm are web document file extensions. Some web designers prefer
to use the .htm file extension because it is one less letter to type in the URL. It is up to
you which extension you want to use.
After you have saved the document, you are ready to view your work. In Notepad++, go
to the top menu and click Run.
<em> The text goes here and you close the tag. </em>
Let’s end each section with three break elements sandwiched between the
open and closed p elements. We are also going to copy and paste in the
data from the data sheets we created in Exercise 1. Follow the headings
and styles codes used in the illustration on the next page.
In Notepad++, click the disk icon at the top of the page to save.
If you did your code correctly, then the middle of your web page should
look something like this image.
If your image doesn’t look like this, recheck your coding to make sure you wrote all the
text correctly. If you did, then the problem might be that you launched the web page in a
different browser than Microsoft Internet Explorer. All browsers have unique features
that interpret code differently; and as a result, web pages don’t always appear the same in
different browsers even though the code is exactly the same. Re-run your work and make
sure you clicked to launch in IE.
Thus, you have the open <a href= " " > and the closed </a>.
Let’s see how this code looks in Notepad++.
Notice how the links are written above. We first begin the paragraph with
our paragraph tag and style codes. Next, we write some text that will go
before the link. We then create the link, followed by the text which will be
activated, and then we close the link tag with </a>. Thus, in the above
examples, the words, Human Performance and Training and Governors
State University are the linked text. The image below shows how the code
appears on the web site.
Your Notepad++ code will look something like the bolded text below.
Before the text, add some wording such as: To view a YouTube video on
instructional design and training, click on the video presentation below.
Notice how the wording is placed into a paragraph tag and closed off with
a closed paragraph tag. Next, I added two break elements. After the
embedded YouTube coding, I placed four break elements.
<p class="style3">To view a YouTube video on instructional design and training, click on the video
presentation below.</p>
<p><br /><br /></p>
Let’s save the code in Notepad++ and launch it to see how it looks.
NOTE: After launching the page in Internet Explorer, make sure you click
the active content bar. Click the yellow box.
If you don’t allow blocked content, your video will not show up.
Your web page should look something like the image below.
You will do the same. To do so, we will use the <ol> open command, followed by <li>
open and closed </li> commands for each listed item, and then we will close the list with
a </ol>. Thus, first type your first paragraph codes introducing the list. Then on the next
line, type your <ol>. On the next line type <li class=“style3”>. This command tells the
browser we are entering a listed item but want the font to appear as 14 (as indicated by
style3). Then close the first listed item with a </li> tag. Follow the same process for the
remaining listed items. After listing each, close the ordered list with a closed tag.
<p id="anchor1">
<p class="style3">If you have questions about the field or the graduate program at Governors State
University, contact <a href="mailto:[email protected]">Dr. Lanigan</a>. </p>
<br /><br />
<p><a href="#top">Back to Top</a></p>
</body>
</html>
Let’s begin with the second anchor, that is, the Back to Top link. Most (not
all) browsers recognize the code “#top” as an indication to send the user
back to the top of the page. As such, you can simply type the code as
illustrated.
Thus, when the users click the words, Back to Top, the link will send them
to the top of the page.
Unlike the Back to Top anchor, most anchors need an id to link to. For
example, on the top of my page, I created an anchor link between the
words performance improvement classes as illustrated below.
Next, I created an id to tell this anchor were to go when the user activates
the link. In this example, I placed the id at the bottom of my web page.
<p id="anchor1">
<p class="style3">If you have questions about the field or the
graduate program at Governors State University, contact <a
href="mailto:[email protected]">Dr. Lanigan</a>. </p>
<br /><br />
<p><a href="#top">Back to Top</a></p>
</body>
</html>
Thus, when the user activates the above link, the browser will send them
down to the bottom of the web page.
To practice the anchor link, insert the anchor into the top portion of you
text similar to the way I did it. Then add an anchor id to the bottom of
your page. Follow the coding just as I illustrated in the above two
examples.
Afterwards, save and view your web page. Click on the links to make sure
they work.
The Dr. Lanigan words are linked with a mailto code. The mail to code is:
Thus, you use the <a href = code and in between the quotation marks, you
type in mailto: and an e-mail address. Between the greater and less than
signs, you type text that describes whose e-mail address it is. Close the tag
with </a>.
(Please Note: This tag does not work in all browsers. It does work in
Microsoft Internet Explorer, typically opening up Outlook.)
At this point, my web page is complete. Assess your own web page to
make sure all the codes are in order.
ADDENDUM
Adding Audio
You may wish to add sound to your web page. For example, you may
want music, or your voice, etc. After you have saved an audio file, then
decide where you wish to place the audio link on your web page.
To link a sound file, type the following code into your web page.
<p><a href="name of audio file.extension"></a></p>
And if I wanted to link the audio to the words, “Click here to listen to the
audio,” then the link would be as follows.
If you wish to have a picture act as an icon to activate your sound, then
your code would look something like this.