Skip to main content

Posts

HTML5 tutorial for beginners with examples

HTML5 Tutorial with Examples Basic HTML document example This is a Basic HTML Document Example <!doctype html> <html lang="en"> <head>     <meta name="description" content="HTML5 Tutorial for beginners with Examples">     <meta name="keywords" content="HTML5, tutorial, beginners, examples,">     <meta charset="UTF-8"> </head> <body>     <h1>Heading</h1>     <p>         Document contents     </p> </body> </html> Heading - HTML5 tutorial for beginners with examples 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. Example <h1&g

HTML tutorial for beginners with examples

HTML Tutorial 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 for beginners with examples History In late 1991, the first version of HTML was described by Tim Berners-Lee. Version Published year HTML+ 1993 HTML 2.0 1995 HTML 3.2 1997 HTML 4.01 1999 Creating a HTML page Web developers often use HTML editors like Adobe Dreamweaver, Komodo Edit, Microsoft Web Expression, Komodo IDE, Aptana Studio, NetBeans, NetObjects Fusion, CoffeeCup HTML Editor, etc. these professional HTML editor can offer convenience and added functionality. But you don't need a special tool for making HTML, you can write HTML by using a basic text editor such as Notepad on Windows, TextEdit on MacOS, gedit on Ubuntu Linux etc. This is the best way to learn HTML. Create a H

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 .