Introduction To HTML
Introduction To HTML
Topperworld.in
Introduction to HTML
HTML is an acronym which stands for Hyper Text Markup Language which is
used for creating web pages and web applications.
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.
Hyper Text 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, tables, links, etc.
©Topperworld
HTML
Web Page:
A web page is a document which is commonly written in HTML and
translated by a web browser.
A web page can be identified by entering an URL. A Web page can be of the
static or dynamic type.
With the help of HTML only, we can create static web pages.
Hence, HTML is a markup language which is used for creating attractive web
pages with the help of styling, and which looks in a nice format on a web
browser. An HTML document is made of many HTML tags and each HTML tag
contains different content.
History of HTML
In the late 1980's , a physicist, Tim Berners-Lee who was a contractor at CERN,
proposed a system for CERN researchers. In 1989, he wrote a memo proposing
an internet based hypertext system.
©Topperworld
HTML
HTML Versions
Characteristics of HTML:
Easy to understand: It is the most straightforward language you can
say, very easy to grasp this language and easy to develop.
Linkable: You can make linkable text like users can connect from one
page to another page or website through these characteristics.
Support: You can use this language to display the documents on any
platform like Windows, Linux, or Mac.
©Topperworld
HTML
Advantages of HTML:
1) HTML is easy to learn, easy to apply and it’s totally free you will just
need a text editor and a browser.
2) HTML is supported by all the browsers and it is the most friendly
search engine.
3) HTML can easily integrate with other languages and is easy to
develop.
4) It is the basic of all programming languages and the lightest language
ever.
5) In HTML, the display changes frequently depending on the window
size or the device size making it comfortable to read by the user.
Disadvantages of HTML:
HTML can be used to create only static Web-page, it can not create
dynamic web-page.
There is a lack of security in HTML.
Creating a simple Web-page required so many tags.
HTML language is not centralised i.e. all the web pages that are
connected, you have to design them separately else need to use CSS.
HTML becomes complex when you try to create a huge website.
The basic structure of an HTML page is laid out below. It contains the essential
building-block elements (i.e. doctype declaration, HTML, head, title, and body
elements) upon which all web pages are created.
©Topperworld
HTML
©Topperworld
HTML
<h1> : Text between <h1> tag describes the first level heading of the
webpage.
<p> : Text between <p> tag describes the paragraph of the webpage.
©Topperworld