1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML Html INTRODUCTION

Discussion in 'Web Development' started by gilbertsavier, Aug 4, 2009.

  1. gilbertsavier

    gilbertsavier New Member

    Hi,
    Webpages are written in HTML - a simple scripting language.

    HTML is short for HyperText Markup Language.

    * Hypertext is simply a piece of text that works as a link.


    * Markup Language is a way of writing layout information within documents.


    Basically an HTML document is a plain text file that contains text and nothing else.

    When a browser opens an HTML file, the browser will look for HTML codes in the text and use them to change the layout, insert images, or create links to other pages.

    Since HTML documents are just text files they can be written in even the simplest text editor.

    A more popular choice is to use a special HTML editor - maybe even one that puts focus on the visual result rather than the codes - a so-called WYSIWYG editor ("What You See Is What You Get").

    Some of the most popular HTML editors, such as FrontPage or Dreamweaver will let you create pages more or less as you write documents in Word or whatever text editor you're using.

    However, there are some very good reasons to create your own pages - or parts of them - by hand...

    Thanks & regards
    Lokananth
     
    Master Softwares likes this.
  2. reganstar

    reganstar New Member

    Thank you for mini tutorial !
     
  3. Khushboo

    Khushboo New Member

    thanx for that tutorial !! please give any link about advance HTML tutorial.

    Menu Templates
     
    parthdudhagra likes this.
  4. Andersen

    Andersen New Member

    Thank you for this tutorial !
     
    parthdudhagra likes this.
  5. bmcoll3278

    bmcoll3278 New Member

    I agree strongly with creating pages by hand. Thanks for doing the tutorial.
    If you would like please check out this tool.
    http://www.bmcoll.com/pagetest

    You can type in your html by hand and then it will test it, let you preview it,and create a copy of it at xhtml 1.o standard.

    I do php tutorials from time to time and I am working on one that will be interactive. Where you learn the code and also get to see what you wrote in action.
     
    parthdudhagra likes this.
  6. harrisdefth

    harrisdefth New Member

    Hi Glibert.
    Thanks for sharing this tutorial with us. It is useful to all html beginners.
     
    parthdudhagra likes this.
  7. daviddakarai

    daviddakarai Member

    Thank you for this details.It is helpful to learn the html.
     
    parthdudhagra likes this.
  8. margaretcogburn

    margaretcogburn New Member

    Some common tags we use in html are:
    The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing </p>.whenever you use the <br /> element, anything following it starts from the next line.You can use <center> tag to put any content in the center of the page or any table cell.The <hr> tag creates a line from the current position in the document to the right margin and breaks the line accordingly.
     
    parthdudhagra likes this.
  9. Bruce Kenway

    Bruce Kenway New Member

    Thank you for posting a basic introduction about HTML, it's clear and concise. Beside, HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create Web page. Web browser can read HTML files and render them into visible or audible web pages. HTML describes the structure of a website along with cues for presentation, making it a markup language, rather than a programming language.
     
    parthdudhagra likes this.
  10. GRIFFITH

    GRIFFITH New Member

    Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.
     
    parthdudhagra likes this.
  11. Bruce Kenway

    Bruce Kenway New Member

    HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. Web browsers can read HTML files and render them into visible or audible web pages. HTML describes the structure of a website along with cues for presentation, making it a markup language, rather than a programming language.

    HTML elements form the building blocks of all websites. HTML allows images and objects to be embedded and can be used to create interactive forms. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, link, quotes and other items.
     
    parthdudhagra likes this.
  12. 3D Power

    3D Power New Member

    Last edited by a moderator: Nov 7, 2015
    parthdudhagra likes this.
  13. parthdudhagra

    parthdudhagra New Member

    What is HTML?

    HTML is a highpertext markup language for describing web documents (web pages).

    - A markup language is a set of markup tags
    - HTML documents are described by HTML tags
    - Each HTML tag describes different document content

    HTML basic program :

    <html>
    <head>
    <title>Page Title</title>
    </head>
    <body>

    <h1>My First Heading</h1>
    <p>My first paragraph.</p>

    </body>
    </html>



    The text between <html> and </html> describes an HTML document <html>......</html>
    The text between <head> and </head> provides information about the document <head>.....</head>
    The text between <title> and </title> provides a title for the document <title>.....</title>
    The text between <body> and </body> describes the visible page content <body>....</body>
    The text between <h1> and </h1> describes a heading <h1>.....</h1>
    The text between <p> and </p> describes a paragraph <p>....</p>

    HTML Tags

    HTML tags are keywords (tag names) surrounded by angle brackets :

    <tagname>content</tagname>

    HTML tags normally come in pairs like

    <p> and </p>

    The first tag in a pair is the start tag, the second tag is the end tag
    The end tag is written like the start tag, but with a slash before the tag name
     
  14. HTML is a markup language for describing web pages .

    - HTML stands for Hyper Text Markup Language
    - A markup language is a set of markup tags
    - HTML documents are described by HTML tags
    - Each HTML tag describes different document content

    Basic HTML code -

    <html>
    <head>
    <title>Page Title</title>
    </head>
    <body>


    <h1>My First Heading</h1>
    <p>My first paragraph.</p>

    </body>
    </html>

    <html>
    <head>
    <title>Page Title</title>
    </head>
    <body>

    <h1>My First Heading</h1>
    <p>My first paragraph.</p>

    </body>
    </html>