Sunday 26 October 2014

What is HTML

Learn What is HTML in Urdu 



what is html

HTML stands for Hyper Text Markup language. In fact, a markup language is a set of markup tags. These markup tags are called html tags. Html documents are described by HTML tags. Each html tag describes different document content. An html document always consists of text, images, likes and videos. Fist of all, let's take a look at some terms you should know. read them carefully one by one. 


What is HTML Tag?

Html tags are keywords (tag name) surrounded by angle brackets. HTML tags normally come in pairs like this <h1> and </h1>. The first tag is the start tag and the second tag is end tag. The end tag is written like the start tag, but, with a forward slash “/”, before the tag name. the start tag is called opening tag and the end tag is called closing tag. 


Elements of a HTML Document

An element normally consists of opening tag, content and closing tag (<tagname> content </tagname>). They are used to describe different pasts of a html document. Let’s have a look at the following a set of codes describing different document content.

<!DOCTYPE   HTML >
< html >
< body >
< h1 > My First Heading </h1>
< p > My First Paragraph</p>
</ html >
< /body >

Codes Explained 


  • The DOCTYPE declaration define the document type.
  • The Content between <html> and </html> describes the web document.
  • The Content between <body> and </body> describes the visible page content.
  • The Text between <h1> and </h1> describes a heading.
  • The Text between <p> and </p> describes a paragraph. 


Who Develops Web Standers and Web Technologies?

World Wide Web Consortium (w3c.org) is the international organization who develops web standards and web technologies and it also defines html specification. 

No comments:

Post a Comment