Tuesday, 10 September 2013

HTML 5 Mobile Development

Most smartphone applications have changed our lives are the result of HTML 5. Best video applications graphics editing applications and audio streaming, ego-location applications, smooth animation and are the result of this platform.

No wonder it is a favorite among developers worldwide developers and iPhone to create applications for the BlackBerry has become.

 It also allows the customer database is one of the databases otrasli.Structural preferred model can be built on the client using real data from SQL databases.


Tuesday, 3 September 2013

How to Create an HTML Table

When you are making website, you have to know how to add data and elements also how to add tables in web pages just simply follow the following steps and learn how to create HTML Table.

•    Open your text editor.
•    create a new text document in text editor.


text editor

•    Enter the following HTML

<!doctype html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>My Table</h1>
<table>
    <tr>
        <th>Airport Code</th>
        <th>Common Name/City</th>
    </tr>
    <tr>
        <td>CWA</td>
        <td>Central Wisconsin Airport</td>
    </tr>
    <tr>
        <td>ORD</td>
        <td>Chicago O'Hare</td>
    </tr>
    <tr>
        <td>LHR</td>
        <td>London Heathrow</td>
    </tr>
</table>
</body>
</html>

•    Save the file with the extension table.html

text editor

•    Open your Browser and view the file.

Copy this http://localhost/table.html and paste in your browser into the address bar.

text editor



Thursday, 22 August 2013

Top 10 Best Online HTML Editors



Most people have wish to use best HTML editor and we use every day but it is difficult to use every time because these editors may not  available on other systems so I have decided to share the top best 10 online HTML editors you can easily use everywhere if you are not at home you can use at any place.




Top 10 best online HTML Editors: 

1.       Online-HTML-Editor.org
2.       HTML Instant
3.       Bespin
4.       Online HTML Editor
6.       Real Time HTML Editor
7.       Amy Editor
8.       TinyMCE
9.       HTMLEditor.in
 


 

Thursday, 15 August 2013

Writing correct code



Validation documentation is intended not only to ensure that the code complies with the HTML, to eliminate these all errors and comments on the document. Meanwhile, the formation of a specific culture coding can significantly reduce or even get rid of viable faults. Like  a experience is form of learning of specifications and typical blunders developers, which should be avoided.

Code errors typically occur for the following reasons:

·         the site is not specified <! DOCTYPE>;
·         typo (misspelled tag or attribute);
·         not a required attribute of the tag;
·         used tag or attribute that is not included in the specification;
·         incorrect embedding tags.

Further analyze these errors in detail



 Empty <! DOCTYPE>

Element <! DOCTYPE> is located in the first line of code of the document and tells the browser how to interpret the code and display this web page. The difference between a page with <! DOCTYPE> and without it can be very significant, to the same validator first checks for the presence of this element in the code.

Errata

Obviously, the easiest to correct typographical error occurs because, when allowed misspelling required tag. After validating the type of error is issued and the line number in the code where it is, so it remains only to change to the correct value.