HOME                WHAT IS HTML??
   HTML is the lingua franca of the web. It’s a simple, universal mark-up language that allows web publishers to create complex pages of text and images that can be viewed by anyone else on the web, regardless of what kind of computer or browser is being used.   It means "Hypertext Mark-up Language"Designing webpages is synonymous to creating world wide web(WWW) documents or simply the web. World ide web is one of the services available on internet that allows you to get information about everything from any web site anywhere in the world to your computer. HTML BASIC STRUCTURE
<HTML>
             <HEAD>
                           <TITLE></TITLE>
             </HEAD>
<BODY></BODY>
</HTML>

  HTML is just a series of tags that are integrated into a text document. They’re a lot like stage directions — silently telling the browser what to do, and what props to use.HTML tags are usually English words (such as blockquote) or abbreviations (such as “p” for paragraph), but they are distinguished from the regular text because they are placed in small angle brackets. So the paragraph tag is <p>, and the blockquote tag is <blockquote>.

HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>), within the web page content. HTML tags most commonly come in pairs like <h1> and </h1>, although some tags represent empty elements and so are unpaired, for example <img>. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, further tags, comments and other types of text-based content.The purpose of a web browser is to read HTML documents and compose them into visible or audible web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page.

HTML elements form the building blocks of all websites. HTML allows images and objectsto be embedded and can be used to create interactive forms. It provides a means to createstructured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. It can embed scripts written in languages such as JavaScript which affect the behavior of HTML web pages.


 
HTML
 
JAVA
 
CSS