Html

Introduction

HTML stands for Hyper Text Markup Language, it is the language used to display web pages that uses tags and attributes.Tim Berners-Lee was the founder of HTML. HTML became popular in the 1990's with the boom of the internet. There are five versions of HTML. HTML has evolved from a simple language with a small number of tags to a complex system of mark-up language.

Overview

Any Text editor can be use dto create HTML documents. The Most commonly used text editors are

  • Notepad (windows)
  • WordPad (Windows)
  • Simpletext(Mac)

Common Usage

The usage example shows four commonly used HTML tags. The <html> tag is used to show that a section of text is html code. The <title> tag encloses “Sample Title” and sets the page title that is shown by a web browser. The <body> tags are the main content section of a web page. The <p> tag shows that the “Sample Text” is encloses is a paragraph, and will be automatically indented and spaced by any web browser that displays it.

Common Tags

<html>
<head>
<title>Sample Title</title>
</head>
<body>
<p>Sample Text</p>
</body>
</html>

HTML In The News

HTML has gone through several versions, starting with original HTML and working up to HTML4. Currently, HTML5 is in development by the World Wide Web consortium w3c. HTML5 adds more features to HTML4 to make HTML more useful for internet video, multimedia, and web 2.0 applications.

HTML Humor

HTML tags are commonly used in humor as shown in these pictures here.

html_jokes_07.jpghtml_jokes_19.jpg

More Reading

http://www.w3schools.com/html/html_intro.asp
http://www.w3.org/TR/html4/
http://www.w3.org/MarkUp/future/papers/adobe-19980427.html

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License