Skip to main content

Posts

Showing posts from August, 2014

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