Learn Desktop and Web Programming: Basic HTML

Senin, 09 Januari 2012

Basic HTML

To learn HTML syntax or there are some basic tags you should know. Here is the basic format to create a html file.
<html>
<head>

contents of the HTML head
</ head>


<body>
contents of the HTML body
</ body>
</ html>



Each HTML file always begins with the syntax <html> and </ html>. Amid the syntax is then filled head and body tags. Remember, every opening tag must end with a closing tag. <body> Is the opening tag and the tag </ body> is the closing tag. Very easy, every closing tag need only be marked slash (/) of the opening tag. Page of the web will be created in the body. Consider the following HTML syntax.


<html>
<head>
O world
</ head>



<body>
Welcome to the blog <h1> igor </ h1>
<font> thank you for coming </ font>
</ body>
</ html>



Copy and paste the above code into notepad, then save and name the file "helloworld.html". Then run the file by double click the file helloworld.html. You need a web browser like mozilla firefox, internet explorer, etc. so that the file is not running. So that I can give to this web programming tutorials.

| Free Bussines? |

3 komentar:

  1. nice share om bro..
    lanjutkan posting yg menarik yap..

    tapi pakai bahas indonesia donk..
    mumet juga ane baca yg linggis2..

    BalasHapus
  2. izin copas masbro..biar di paste kan di blog ane..

    BalasHapus
  3. FYI, you can learn more about html at w3schools.com

    BalasHapus