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 What are HTML tags?

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

  1. GRIFFITH

    GRIFFITH New Member

    HTML tags are the hidden keywords within a web page that define how the browser must format and display the content. Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag.
     
  2. Bruce Kenway

    Bruce Kenway New Member

    The language is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>). Browsers do not display the HTML tags and scripts, but use them to interpret the content of the page.
     
  3. 3D Power

    3D Power New Member

    HTML tags are the hidden keywords within a web page that define how the browser must format and display the content.

    Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag. Note that the closing tag has the same text as the opening tag, but has an additional forward-slash ( / ) character. I tend to interperet this as the "end" or "close" character.


    Best,
    3D Power
     
    Last edited by a moderator: Nov 7, 2015
  4. parthdudhagra

    parthdudhagra New Member

    HTML to types tag

    html start tag <html>
    html end tag</html>

    HTML basic Program :

    <html>
    <head>
    <title>Title of the document</title>
    </head>

    <body>
    The content of the document......
    </body>

    </html>
     
  5. Eugene Wolf

    Eugene Wolf New Member

    Tags are major elements of HTML Regarding tags, there are different versions of HTML. Currently HTML5 is used more and more. However many sites still use older versions.
     
  6. Eugene Wolf

    Eugene Wolf New Member

  7. HTML tags are the hidden keywords within a web page that define how the browser must format and display the content. Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag.

    HTML code describe symbolic form <>

    Two parts html tag


    HTML start tag - <html>
    HTML end tag - </html>

    HTML Basic Code -


    <html>
    <head>
    <title>this is the title</title>
    </head>
    <body>
    this is everything that goes in the document!

    </body>
    </html>
     
  8. nidhivyas

    nidhivyas Member

    The HTML tag is very useful.
    It is hyper text markup language.
    The HTML tag is a website development language.
    HTML tags are used to create a web page to easily understand by the users.

    <html>
    <head>
    <title> .... </title>
    </head
    <body>
    </body>
    </html>
     
  9. Shrdha

    Shrdha New Member

    HTML tags are the hidden keywords within a web page that define how the browser must format and display the content. Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tagand </html> is the closing tag.
     
  10. tonyadam0706

    tonyadam0706 New Member

    Another basic turorial about html:
    Can I Use Two Tags at Once?

    Yes. Just make sure to begin and end both. Like so:

    <strong><em>Strong and emphasis</em></strong> gives you Bold and Italic

    If you do use multiple tags to alter text, make a point of not getting the end tags out of order. Look at this:

    <strong><em>Strong and emphasis</strong></em>

    In terms of format, the example above is not correct. The end tags are out of order in relation to the start tags.

    Follow this rule:
    Always set the beginning and end tags at the same time, always placing them on the farthest end of the item being affected.

    Here, again, is the example above in correct form:

    <strong><em>Strong and emphasis</em></strong>

    Notice the strong tags are on the far ends. Next in line are the emphasis tags. Just keep setting commands at the farthest ends each time you add them and you'll stay in good form.
     
  11. healthcareinfo

    healthcareinfo New Member

    The HTML stands for hypertext markup language.html tag are used for describe html code and use about website development.html code describe then tag.
    two tag html code describe.start tag<html> and end tag</html>
    <html>
    .............
    </html>
     
  12. aegisinfoways

    aegisinfoways New Member

    Hello Friends

    HTML stands for Hypertext Markup Language,It's code describe by <> tag. then two types tag describe start tag and end tag like <html> and </html>.this markup language are used for website development and any technology related product development.
     
  13. sweetsdailyupdates

    sweetsdailyupdates New Member

    HTML is hypertext markup language which is used to create webpage. And there are not 3 or 4 tags available in HTML. There are lots of html tags which helps to describe webpages.

    You can take some ideas about HTML tags from below link.

    http://www.w3schools.com/html/
     
  14. w3web

    w3web Member

    To create web pages we use HTML, and it is the basic level web page creation which does not support for dynamic changes over the website. In order to develop dynamic website, the programmers uses CSS, Java Script, PHP, and many more along with HTML tags.