Page 85 - Computer Class 06
P. 85
8 8 8 HTML–An IntroductionHTML–An IntroductionHTML–An Introduction
Just write down the codes in the Notepad editor and save this file with the
extension of .htm or .html and then double click on that file. You will get output
on the default web browser.
<HTML>
<HEAD>
<TITLE> The first page </TITLE>
</HEAD>
<BODY>
HELLO WORLD
</BODY>
</HTML>
HTML is an acronym which stands for Hyper Text Markup Language which is
used for creating web pages and web applications.
Let’s see what is meant by Hypertext Markup Language, and web page.
Hyper Text : Hyper Text simply means “Text within” Text. A text has a link within
it, is a hypertext. Whenever you click on a link which brings you to a new
webpage, you have clicked on a hypertext. HyperText is a way to link two or
more web pages (HTML documents) with each other.
Markup Language : A markup language is a computer language that is used to
apply layout and formatting conventions to a text document. Markup language
makes text more interactive and dynamic. It can turn text into images table, links
etc.
Web page : A web page is a document which is commonly written in HTML and
Computer-6 85