You are on page 1of 7

PC with LAN ISP WEB BROWSER

TECHNICAL AND SOFTWARE REQUIREMENTS


FASTER & CHEAPER
INTERNET WAY OF
SOCIAL AND ETHICAL COMMUNICATION
ETIQUETTE
REQUIREMENTS

BENEFITS
INTERACTION
USING INTERNET BETWEEN PEOPLE
INTELLECTUAL
PROPERTY AND CULTURES

ADVERTISING AND
COPYRIGHT WHEN ONLINE
USING INTERNET PUBLISHING

SERVICES OFFERED

COMMUNICATION INFORMATION FILE TRANSFER


What is HTML?
• HTML is the "mother tongue" of your
browser.
• HTML is a language, which makes it possible to
present information (e.g. scientific research)
on the Internet. What you see when you view
a page on the Internet is your browser's
interpretation of HTML.
what does H-T-M-L stand for?
• Hyper is the opposite of linear. In the good old days - when a
mouse was something the cat chased - computer programs
ran linearly: when the program had executed one action it
went to the next line and after that, the next line and so on.
But HTML is different - you can go wherever you want and
whenever you want
• Text is self-explanatory.
• Mark-up is what you do with the text. You are marking up the
text the same way you do in a text editing program with
headings, bullets and bold text and so on.
• Language is what HTML is. It uses
Elements and tags
• "Tags"?
• Tags are labels you use to mark up the begining and end of an
element.
• All tags have the same format: they begin with a less-than sign
"<" and end with a greater-than sign ">".
• Generally speaking, there are two kinds of tags - opening tags:
<html> and closing tags: </html>. The only difference between an
opening tag and a closing tag is the forward slash "/". You label
content by putting it between an opening tag and a closing tag.
• HTML is all about elements. To learn HTML is to learn and use
different tags.
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
Affect Code Code Used What It Does
Strong Strong <strong>Bold</strong> Bold
Emphasis em <em>Italic</em> Italic
Paragraph p <p>Paragraph</p> Plain

tag What It Does


This command gives you a line across the page. (HR stands for
<HR> Horizontal Reference.) The line right above the words "Single tags"
was made using an <HR> tag.
This BReaks the text and starts it again on the next line.
Remember you saved your document as TEXT so where you hit
<BR> ENTER to jump to the next line was not saved. In an HTML
document, you need to denote where you want every carriage
return with a <BR>.

You might also like