Friday, April 22, 2011

HTML: Introduction

What is Web Page?

Generally it can be said that, the web page is the document that is created by a Markup Language called HTML. Web page is the combination of different component adding in different dimensions. The component can be stylist font, color, table, sound, image, animation, video, interlink with other web pages etc. The web browser is used to read HTML document and display them as a web page.


What is HTML?

The HTML is the abbreviation of Hyper Text Markup Language. HTML is a markup language, not the programming language. HTML is used to describe the webpage by markup language trough a set of markup tags and their attributes.


HTML Editor

An HTML editor is a software application used to writing HTML command and creating web pages. There are various forms of HTML editors like: Text editors, Object editors and WYSIWYG (What You See Is What You Get) editors.

Basic text editors
The following are some commonly used plain text editors:
*  AkelPad
*  Crimson Editor
*  Emacs
*  FAR Manager (+Colorer plugin)
*  gedit
*  jEdit
*  Kate
*  Metapad
*  nano
*  Notepad
*  WordPad
*  SciTE
*  TextEdit
*  TextMate
*  TED Notepad
*  UltraEdit
*  vi
*  Vim


Source code editors
Source code editors evolved from basic text editors, but include additional tools specifically geared to handling code.
*  ActiveState Komodo
*  Alleycode HTML Editor
*  Aptana
*  Arachnophilia
*  BBEdit
*  BlueFish
*  Coda
*  E Text Editor
*  Eclipse with the Web Tools Platform
*  EditPlus
*  EmEditor
*  HTML-Kit
*  HomeSite
*  Notepad++
*  NetBeans IDE
*  NoteTab
*  PHPEdit
*  PSPad
*  RJ TextEd
*  Scintilla
*  Smultron
*  skEdit
*  TED Notepad
*  TextMate
*  TextPad
*  TextWrangler
*  TopStyle
*  UltraEdit

WYSIWYG editors
Although the term WYSIWYG is often used for these editors but generally they are not truly WYSIWYG.
*  ASP.NET Web Matrix
*  Adobe Dreamweaver
*  Amaya
*  BestAddress HTML Editor
*  BlueGriffon
*  CoffeeCup HTML Editor
*  FirstPage
*  Freeway
*  Hyper Publish
*  iWeb
*  KompoZer
*  Microsoft Expression Web
*  Microsoft SharePoint Designer
*  Microsoft Visual Studio
*  Microsoft Visual Web Developer Express
*  Microsoft Publisher
*  Macromedia Dreamviewer
*  NetObjects Fusion
*  OpenBEXI
*  Opera Dragonfly
*  Quanta Plus
*  RapidWeaver
*  Sandvox
*  SeaMonkey Composer
*  SiteGrinder
*  tkWWW
*  WebPlus
*  WordPress
*  WorldWideWeb



Tags

Tags are the elements that are used in the markup language. HTML tags are keywords surrounded by “<>” like <html>. HTML tags normally come in pairs like <b> and </b>. The first tag in a pair is the start tag; the second tag is the end tag. Start and end tags are also called opening tags and closing tags.


HTML attribute

HTML attributes are modifiers of HTML tags. They are generally written within the start tag of an element, after the element's name. They appear as name-value pairs, separated by "="
<''tag'' ''attribute''="''value''">(content to be modified by the tag)</tag>
Where tag names the HTML tags, attribute is the name of the attribute, set to the provided value.

No comments:

Post a Comment