3. HTMLThis page:
HTML DefinedHTML stands for HyperText Markup Language.
You use HTML, which consists of tags you put around text, to specify how browsers should the format of information. HTML TagsHTML tags are recognizable because they are bounded by two special characters. For example, <tag> shows the less than sign (<) and the greater than sign (>) which are often the two most used characters in many HTML documents. Here are the tags for a very basic HTML page.
Container TagsMost tags contain information and must have beginning tags and ending tags. For example, to make text bold, you need the beginning ad ending tag around the text , as in: <b>Text</b>. Empty TagsOther tags stand alone, without containing anything, like the horizontal rule tag, <hr>: Tag Attributes and ValuesMany tags are defined by values you provide for attributes. For example, in the horizontal rule tag, <hr> if you use no attributes the line crosses the entire browser window, but if you set the size attribute to 50%, and the align attribute to "left" the line only crosses half the window, beginning on the left side, as shown here: hr is the tag Structure TagsSome tags simply define the page itself and are called structure tags. The basic structure tags are the HTML, HEAD, TITLE, and BODY tags. Format TagsSome tags describe your format intent. These include Headings (<Hn>Text</Hn>), paragraph breaks (<p>), and emphasis using italics (<i>Text</i>)and bold (<b>Text</b>) tags are just a few of the tags you'll learn to use in this course. Implicit TagsImplicit (logical) tags let the browser to choose how the text will be displayed.
Strong renders as bold. Teletype is monospaced text. Explicit TagsExplicit tags, also called physical tags, specifically tell the browser how to display the text.
These three tags (Bold, Italic and Underline) are all explicit tags. The browser is given no choice in how they are rendered. They can be used in combination with each other. Hands OnFirst, get to know your computer. Notice how the menus work for each program. When you feel ready, you can try to use an editor (SimpleText on the Mac or Notepad on the PC) to create and save a web page you can view in a browser (Netscape or Internet Explorer). Here are some rules intended to minimize frustration:
Ready to try?
Your page isn't on the web yet, but you have begun. |