Skip to main content

Editor For Html

There are several types of editor in the market .Some Editor names are given below.


  1. Notepad++.
  2. Notepad.
  3. TextEdit (MAC).
  4. VS Code.
    

Structure of HTML


It is the most important part of HTML.Complete Website totally depend on this structure.




1. DOCTYPE Html


It is not a Html tag. It is the very first thing in html pages. It is the instruction to the browser about the version of the markup language. It is not a case sensitive.

<!DOCTYPE html>: It is a html5 Declaration
 
**Always add Doctype in your code. It helps the browser to render the content correctly.**

2. HTML

It is paired a  tag. It means that it consist a opening and closing tags both. It is containing a whole data of a html document. Each html document contain one <html> opening and closing tag.

*As shown in figure, Head and body are the child of  HTML tag.*


3. HEAD

It is  a  container for page header information. It also contain the meta information about the document . In the head portion we can use <meta>,<link>,<<base>,<style> <script> <title> etc tags.

* Meta tag include the information about the document like as description of document and       keywords, which is helpful for Searching.

* Link is used for link a external file just like Stylesheet and Javascript file.

* Base  is used for create a base Url for all link on the pages.

* Style is used to include CSS rule inside the document .

* Script is used to include Javascript rule and VBScript inside the document.

* Title is used to specifies the title of the document.

** In the HTML 5 head Tag is omitted.**

4.META

 Meta tag include the information about the document like as description of document and       keywords, which is helpful for Searching.

Meta tag can includes following tags.

    * Name.
 
    * Content

    * Scheme

    * Http_equiv

5. TITLE

 Title is used to specifies the title of the document.

6. BODY

 Body is used to contain the content of the document  such as images , hyperlinks , text, tables, forms etc.


Syntax:
           <body>
                  <h1>Hello </h1>
                                            </body>






                                 * We will learn in detail in next chapter.*

                                                       

         EVERYTHING IS POSSIBLE IN THE WORLD






Comments

Popular posts from this blog

HTML VERSIONS

There are different Versions of html.You should have to know about the versions.                                   HTML                                                                 1991        HTML 2.0                                                           1995        HTML 3.2                                                           1997       ...

HTML BASIC PART2

HTML STRUCTURAL TAGS There are several html structural tags. We will learn these tags one by one. ANCHOR TAG <a> ARTICLE TAG <article> ASIDE TAG <aside> LINE BREAK TAG <br> DETAILS TAG <details> DIVISION TAG <div> HEADER TAG <header> HGROUP TAG <hgroup> HORIZONTAL RULE TAG <hr> FOOTER TAG <footer> NAV TAG <nav> SECTION TAG <section> SPAN TAG <span> SUMMARY TAG <summary>     ANCHOR TAG  Anchor tag denoted by <a>. It is used to define a hyperlink. It means that it allows the user to move from one page to other. Anchor tag is a paired tag it means  that it has opening and closing tag both. We can link a img,audio,video,pdf etc. By default, links are appear as follows. unvisited link , appear in underlined and blue color. visited link  , appear in underlined and purple color. active link , appear in underlined and red color. ...

WELCOME TO HTML

                                                        What is HTML? H tml   stands for  Hypertext Markup Language . Some student thinks that HTML is a programming language but it is not a programming language. It is a markup language. It is used to design web pages.  The father of HTML is  Tim-Berners Lee . He is also director of W3 Consortium.Html is created in 1991 but officially releasing year of HTML is 1995 with HTML 2.0 version. What is Web? The web is nothing, in simple term, it is a collection of web pages. What is Hypertext? H ypertext means that it is a way to web pages or HTML documents are linked together. If you want to access a page then you should have to click on the link. What is the Markup language? M arkup language means that it is used for the presentation of text on the...