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 Getting started with HTML

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

  1. gilbertsavier

    gilbertsavier New Member

    Hi,
    This is a short introduction to writing HTML. What is HTML? It is a special kind of text document that is used by Web browsers to present text and graphics. The text includes markup tags such as <p> to indicate the start of a paragraph, and </p> to indicate the end of a paragraph. HTML documents are often refered to as "Web pages". The browser retrieves Web pages from Web servers that thanks to the Internet, can be pretty much anywhere in World.

    Many people still write HTML by hand using tools such as NotePad on Windows, or TextEdit on the Mac. This guide will get you up and running. Even if you don't intend to edit HTML directly and instead plan to use an HTML editor such as Netscape Composer, or W3C's Amaya, this guide will enable you to understand enough to make better use of such tools and how to make your HTML documents accessible on a wide range of browsers. Once you are comfortable with the basics of authoring HTML, you may want to learn how to add a touch of style using CSS, and to go on to try out features covered in my page on advanced HTML

    p.s. a good way to learn is to look at how other people have coded their html pages. To do this, click on the "View" menu and then on "Source". On some browsers, you instead need to click on the "File" menu and then on "View Source". Try it with this page to see how I have applied the ideas I explain below. You will find yourself developing a critical eye as many pages look rather a mess under the hood!

    For Mac users, before you can save a file with the ".html" extension, you will need to ensure that your document is formatted as plain text. For TextEdit, you can set this with the "Format" menu's "Make Plain Text" option.

    This page will teach you how to:

    * start with a title
    * add headings and paragraphs
    * add emphasis to your text
    * add images
    * add links to other pages
    * use various kinds of lists

    Thanks & regards
    Lokananth
     
  2. reganstar

    reganstar New Member

    I think I will be a fan of your series of helpful posts. Thank you.
     
  3. navyfalcon

    navyfalcon Well-Known Member Verified Member

    A good idea to start is to use a good HTML editor and check the Help files or a tutorial on that editor. Many editors start with the heading ready for you. I use "AlleyCode" a free HTML editor with good help files and several tutorials, but there are other very good free HTML editors. Try several and select the one you like best.

    <a href="http://download.cnet.com/Free-HTML-Editor/3000-10248_4-75984534.html">Free HTML Editor</a>

    <a href="http://download.cnet.com/PageBreeze-Free-HTML-Editor/3000-10247_4-10366810.html">Page Breeze Free HTML Editor</a>

    <a href="http://www.htmlkit.com/">HTML kit</a>

    <a href="http://alleycode.com/">Alley Code</a>
    These suggestions are slightly old and you need to check it they can be used by your system. Check the web for many other HTML Editors

    Note: search the web using "Free HTML Editor", there will be several that you can try
    - - -
    hope this helps
    falcon
     
  4. hmerrillb b

    hmerrillb b New Member

    thanks for help
     
  5. daviddakarai

    daviddakarai Member

    Thanks for sharing..this is helpful
     
  6. Khondokar Md Manik

    Khondokar Md Manik New Member

  7. - HTML language hypertext markup language.
    - HTML language define by tag <>.
    - two types tag available in HTML.
    - Start tag <html>
    - End tag </html>
    - HTML code metatag define in HTML programming language.
    - head define by <head> ......</head>
    - title define by <title>........</title>
    - body define by <body>.......</body>
    - HTML basic Program -

    <html>
    <head>
    <title>hello</title>
    <body>

    .............

    <body>
    </head>
    </html>
     
  8. aegisinfoways

    aegisinfoways New Member

    Hello

    - Get strarting for html learning best platform w3schools.com
    - Collect HTML basic information.
    - HTML is web development programming language.
    - Are describe tag(start and end tag)
    <html>....</html>
    - HTML parts like <head>,<body>,<title> etc.