Understanding Basic HTML (HyperText Markup Language)


CSI Staff
Staff Writer
Center for Support of Instruction

Category: » Tech-skills-software » Html

HTML stands for Hyper Text Markup Language. HTML pages can be as simple or as complex as you would like them to be. This how-to will walk you through the steps of creating a basic HTML web page.

A basic HTML file is a text file that contains markup tags and can be created using a simple text editor such as Notepad or Wordpad. The markup tags tell the Web browser how to display the page in the browser window. An HTML file must have an htm or html file extension.


WHAT TO DO


Create a Simple HTML Document


1. Open Wordpad Text Editor (Start-->Programs-->Accessories-->Wordpad). Note: Notepad will also work.


2. Enter the following text:

<html>
<head>
<title>My Practice Document Title</title>
</head>
<body>
This is the body text of my <strong>practice document</strong>.
</body>
</html>

Every document in HTML format (Web page), MUST contain the following code:

<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>

<BODY>
</BODY>
</HTML>
  1. <HTML> - Declares this an HTML document.
  2. <HEAD> - The Head contains optional information about the document.
  3. <TITLE> - The Title is what displays in browser title bar.
  4. </HEAD> - Closes the Head.
  5. <BODY> - Body contains the document's displayable content.
  6. </BODY> - Closes the Body.
  7. </HTML> - Closes the HTML.

3. Save the document to your A: drive or hard drive. Name the document practice.htm


4.Open your browser , select File-->Open File. Navigate to your practice.htm file to view practice.htm in the browser. (take notice of the document title and bold text).


5. Using Wordpad, open practice.htm. Look at the HTML Cheatsheet to add more markup tags and text. After you have the page the way you want it, test your web page in the Netscape browser.


Rating: Not yet rated



Comments

No comments posted.

Post a Comment / Vote

You must be logged and be a member of the UMUC community in order to comment.

If you have a guest account but are Faculty/Staff of UMUC please send an email to the DE Oracle Site Mananger so that your guest account can be updated.

If you don't have a log in, please register for a FREE account.