Fascinating world of Web pages
Web design is not an easy task and so it is and html Web design world revolves around on html which stands for hyper text markup language. Preparing an HTML requires coding by the expert. HTMLs of today are much different from the htmls of the yore. During yesteryears HTMLs were made with simple coding but today’s htmls are much more sophisticated and advanced thanks to the changing technological scenario. To begin with, one should remember the following basic facts about html files:
HTML stands for Hyper Text Markup Language.
HTML is not a programming language. So there are no codes involved while preparing an html. Rather it comprises of tags and texts.
So what does an html file consist of?
Factually html is not a programming language rather it is a markup language that makes use of tags. A markup language consists of markup tags. So we have Mark up tags interspersed with text that make an html. HTML uses markup tags to describe web pages.
HTML Tags
Terms HTML markup tags and HTML tags are used interchangeably. HTML tags are keywords contained in angle brackets like <html>.
HTML tags normally come in pairs like <strong> and </strong>.
The first tag in a pair is the start tag; the second tag is the end tag.
Start and end tags are also called opening tags and closing tags.
Web pages are also known as HTML documents
HTML documents describe web pages.
HTML documents contain HTML tags and plain text.
HTML documents are also called Web Pages.
So many Web Browsers, but why do we need web browsers, anyway?
We use Web Browsers to read HTML documents and display them as Web Pages. The browser does not display the HTML tags, but uses the tags to interpret contents.
| <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> |

Leave a comment