Skip to main content

Posts

Popular WebSites To Buy Cheap Domain Names

Popular WebSites To Buy Cheap Domain Names - willvick.com Buying a domain name can be a great way to set up your own website with personalized email address. Now, how do you pick the best and cheap domain names registrar? First thing that you’re going to need a domain names registrar with quality performance and support. So that you can buy is your own TLD (Top level domain) to create your own website and personalized email. Below are the 3 of the best and cheapest domain names registrars that provide you domain names registration service at cheap price with quality performance and support. GODADDY.COM NAMECHEAP.COM DOMAIN.COM
Recent 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 .