Skip to main content

Posts

Showing posts from 2013

Title - HTML Tutorial with Example

Title       TITLE Element starts with the <title> opening tag and end with </title> tag in an HTML document . The TITLE element is placed inside the HEAD element (that which starts with the <head> opening tag and ends with the </head> tag ). The TITLE element contains your document title and identifies its content. The title is displayed in browsers titles, window titles, menus, etc where there is only limited room therefore it should not be too much long characters in length.

Text Formatting - HTML Tutorial with Example

Text Formatting - HTML Tutorial with Example www.willvick.com <b> tag is used for bold text <i> tag is used for italic text <sub> tag is used for subscripted text <sup> tag is used for superscripted text <big> tag is used for big text <small> tag is used for small text <strong> tag is used for strong text <em> tag is used for emphasized text

Table - HTML Tutorial with Example

Table - HTML Tutorial with Example www.willvick.com      In an HTML document , the table   starts with <table> tag and ends with </table> tag . The <tr> tag set marks the beginning and end of a row . The <td> tag set marks each cell within the row.

Span - HTML Tutorial with Example

Span - HTML Tutorial with Example www.willvick.com      The HTML <span> Element is an inline element . The HTML <span> element can be used as a container for text in an HTML document, <span> tag is supported in all major browsers .

Script - HTML Tutorial with Example

Script - HTML Tutorial with Example www.willvick.com      The HTML SCRIPT Element places a script within in the HEAD element (that which starting with <head> tag and ending with </head> tag ) or BODY element (that which starting with <body> tag and ending with </body> tag ) in an HTML document. Using SCRIPT Element , you can create dynamic web pages; SCRIPT Element is supported in all major browsers . It is used to define a client-side script , such as a JavaScript or VBScript . SCRIPT element makes the page more interactive .

Paragraph - HTML Tutorial with Example

Paragraph - HTML Tutorial with Example www.willvick.com      In an HTML document paragraphs   are defined with the <p> tag ,  starts with the <p> opening tag and end with </p> tag .Browsers automatically adds an extra blank line before and after a paragraph.The <p> tag is supported in all major browsers .

Meta - HTML Tutorial with Example

Meta - HTML Tutorial with Example www.willvick.com     META element is placed inside the HEAD element (that which starts with the <head> opening tag and ends with the </head> tag ). Meta elements are typically used to specify page description, keywords, author of the document and other metadata . The <meta> tag provides information about your HTML document . Metadata will not be displayed on the page, but it is used by browsers , search engines, or other web services . Usually Metadata gives information to browsers like how to display content of the HTML document, name and other information about the author , last modified information of the page, when the page will reload and etc.

List - HTML Tutorial with Example

List - HTML Tutorial with Example www.willvick.com Definition Lists      In an HTML document, a Definition list starts with the < dl> tag and end with </dl> , <dt> tag is used for item of the list and <dd> tag is used for describes the item in the list. Unordered Lists      An unordered list starts with the <ul> tag and end with </ul> and list item starts with the <li> tag end with the </li> tag in an HTML document. Ordered Lists      An ordered list starts with the <ol> tag and end with </ol> and list item starts with the <li> tag end with the </li> tag in an HTML document.

Link - HTML Tutorial with Example

Link - HTML Tutorial with Example www.willvick.com An anchor tag "a" is used to define a link and the destination of the link is defined in the "href" attribute of the tag.

Line Break - HTML Tutorial with Example

Line Break - HTML Tutorial with Example www.willvick.com      In a HTML document the <br /> tag is used for a single line break . The <br> tag has no end tag , it is an empty tag . The <br> tag is supported in all major browsers.

Image - HTML Tutorial with Example

Image - HTML Tutorial with Example www.willvick.com       Images are defined with the <img> tag in an HTML document. src attribute is use for location of the image. alt attribute is use for short description of the image. Height attribute is use for specify the height of the image. Width attribute is use for specify the width of the image.

Horizontal Line - HTML Tutorial with Example

Horizontal Line - HTML Tutorial with Example www.willvick.com      In an HTML document the <hr /> tag creates a horizontal line . The <hr> tag has no end tag , it is an empty tag. The <hr> tag is supported in all major browsers.

Heading - HTML Tutorial with Example

Heading - HTML Tutorial with Example www.willvick.com      In an HTML document Headings are defined with the <h1>, <h2>, <h3>, <h4>, <h5>, <h6> tags , from <h1> for the most important to <h6> for the least important . A browser automatically adds some empty space before and after the Headings . Headings are supported in all major browsers.

Head - HTML Tutorial with Example

Head - HTML Tutorial with Example www.willvick.com       HEAD Element starts with the <head> opening tag and end with </head> tag . The HEAD element is usually placed the first in the HTML element (that which starts with the <html> opening tag and ends with the </html> tag ) but before the BODY element (that which starting with <body> and ending with </body> ). HEAD element contains descriptive information about the document, such as <title>, <link>, <meta>, <style>, <script> etc. These elements are not displayed directly by the browsers but they function behind the scenes .

Element - HTML Tutorial with Example

Element      An Element is an individual component of an HTML document. element starts with a start tag / opening tag and ends with an end tag / closing ta g. Everything between the start tag and the end tag are the element content . Elements are always case-insensitive .  Some element types have no content ; these Empty elements are closed in the start tag . Most elements can have attributes. Most elements can contain other elements there are called nested element .

DOCTYPE - HTML Tutorial with Example

DOCTYPE - HTML Tutorial with Example www.willvick.com      The <!DOCTYPE> declaration give information to the web browser about what version of HTML is used , <!DOCTYPE> declaration is supported in all major browsers. The <!DOCTYPE> is placed in very first thing in HTML document before the HTML elements. HTML 5 DOCTYPE HTML 5 is not based on SGML therefore does not require a reference to a DTD . HTML 4.01 DOCTYPE HTML 4.01 was based on SGML and the <!DOCTYPE> declaration refers to a DTD .

Div - HTML Tutorial with Example

Div - HTML Tutorial with Example www.willvick.com      The HTML <div> element is block level element , starts with the <div> opening tag and end with </div> tag . In an HTML document, the div element can be used as a container for grouping other HTML element. <div> tag is supported in all major browsers.

Comment - HTML Tutorial with Example

Comment - HTML Tutorial with Example   www.willvick.com      The comment tag are used for written comments in an HTML document , it starts with the <!-- opening tag and end with --> tag. Comments are not displayed in the browser , comments are use to explain the source code , which can help later when edit the source code. The Comment tag is supported in all major browsers.

Color - HTML Tutorial with Example

Color - HTML Tutorial with Example www.willvick.com      A color value may either be a hexadecimal number or color names . Color numbers are prefixed by a hash mark . The color names are case-insensitive .

Attribute - HTML Tutorial with Example

Attribute - HTML Tutorial with Example  www.willvick.com       HTML Attributes are property of the elements which may have values and these attribute values are always enclosed in quotes. It’s providing to the browser with some additional information about an elements how the elements should appear or behave. HTML elements can contain one or more attributes, attribute names and attribute values are case-insensitive and separated by an equals (=) sign.

HTML Tutorial with Example

      Free online HTML Tutorial with Example - HTML tutorial will help you in creating website, after study the tutorial you will just one step ahead of creating your own website. HTML is easy to understand and you will enjoy it to learn. HTML tutorial contains hundreds of examples to better understand. Community - Sign up and Join the willvick.com Community.  Groups - Join the Groups and interact with others developers. Forum - Join the discussion with other members of the Forum. Blog - Read the willvick.com blog to get news and updates about willvick.com free services. Member Directory - Here you can make new friend and find the old ones.