Wednesday, August 24, 2011

HTML Tag list.


IMPORTANT
When you save an HTML file, you can use either the .htm or the .html extension. That’s not different output. We use .htm in our examples. It is a habit from the past, when the software only allowed three letters in file extensions. With new software it is perfectly safe to use .html.
There are html tag list



Right html tags rule.
  1. Write in a keyword between “<>” sign.
  2. Its sensitive case “can write in capital and not capital”.
  3. Write in a “couple” except </br> for ex <p> text</p>,
  4. Between 1st tag and last tag can write another tag.
  5. A good html must Written in right rule, for ex
<tag1><tag2> teks </tag1></tag2> → ×
<tag1><tag2> teks </tag2></tag1> Right

HTML Structure


Let’s Begin to make html page…….. (for first attempt they use Notepad)
First step: open notepad
Next, write (try not copy and paste) this html script :

<html>
<head></head>
<title> My First HTML Page</title>
<body>
Hello world
</body>
</html>
 

 
Next, save the notepad file as “first.html” in your drive
Next, open “first.html” with your web browser “Mozilla Firefox , chrome, safari etc”
For example: I save “first.html” in E:/HTML example/ look these pictures.


That is HTML structure like Paragraps ??
yups....


HTML Text Editor Software

V++

If we use Microsoft we just need “notepad” used as text editor like “netbeans” on java language programming. Here they are some text editor usually used for:
  • EditPlus (must installed in windows OS)
  • Notepad ++ (must installed in windows OS)
  • Crimson Editor (must installed in windows OS)
  • UltraEdit (must installed in windows OS)
  • Vi(automatically installed in Unix OS)
  • Joe (must installed in Linux)
  • etc

If we need a good visual interface, here they are some software usually used for :
  • Microsoft FrontPage
  • Netscape Composer
  • Adobe PageMill
  • Adobe Macromedia DreamWeaver
  • HotDog
  • Microsoft office word
  • Etc

Monday, August 15, 2011

Tags vs. elements


HTML specifies a set of tags that identify structure and content type
tags are enclosed in < >

<img src="image.gif" /> specifies an image

most tags come in pairs, marking a beginning and ending

<title> and  </title> enclose the title of a page

an HTML element is an object enclosed by a pair of tags

<title>My Home Page</title> is a TITLE element

<b>This text appears bold.</b> is a BOLD element

<p>Part of this text is <b>bold</b>.</p>
is a PARAGRAPH element that contains a BOLD element

Sunday, August 14, 2011

What is HTML ?

Website first was made by Tim Bernes Lee and its have special language named HTML

HTML stands for "Hyper Text Mark-up Language"
HTML is client language scripting.