Skip to main content

Posts

Showing posts with the label html

Hybrid Apps : A New Prodigy

Hybrid Apps : The New Era What are hybrid apps ? Hybrid apps are the love children of web applications and java-based applications. Web applications are constructed using HTML, JavaScript, CSS, PHP and other web fundamental languages. These are run and operated on browsers so they are globally available on the web. On the other hand, java-based applications as the name suggest require java to construct them. These applications are stand-alone apps and may or may not require internet to work. Hybrid apps are the apps which are built using web development languages and are stand-alone applications which work like any other java based applications. If you are confused right now or curious to learn building these apps then keep reading because i am gonna list the features and the tools required to build your own simple app in less than 10 minutes. Features of Hybrid Apps Easy Languages As i told in the previous section, these apps are build using web development languages which a...

Relation of HTML and Search Engines

Everyone who has red the previous article of fetch-info or the one who want to do something additional with his blog to make it appear in the search results is curious to know that one simple trick which will tell the search engines about your blog's stuff.Well, you have come to the right place folks because i know that trick and i will definitely make you all aware of that technique. And not even about the stuff, that one trick will also tell the search engines about yourself and your reputation on social media. So sit back and read this article to get to the world of fame. HTML and the Search Engines So, In the previous article i told you about how adding some line of code will get the attentions of search engines to your blog.(Those who don't know about the search engines or haven't red my previous article then you might want to read it now .)That code is actually HTML code. HTML not only shows your visitors whats in your blog, it also tells the search engines about ...

HTML Tables

The HTML tables allow web authors to arrange data like text, images, links, other tables, etc. into rows and columns of cells. The HTML tables are created using the <table> tag in which the <tr> tag is used to create table rows and <td> tag is used to create data cells. Example <!DOCTYPE html> <html> <head> <title>HTML Tables</title> </head> <body> <table border="1"> <tr> <td>Row 1, Column 1</td> <td>Row 1, Column 2</td> </tr> <tr> <td>Row 2, Column 1</td> <td>Row 2, Column 2</td> </tr> </table> </body> </html> This will produce following result: Row 1, Column 1 Row 1, Column 2 Row 2, Column 1 Row 2, Column 2 Here border is an attribute of <table> tag and it is used to put a border across all the cells. If you do not need a border then you can use border="0". Table Heading Table heading can be ...

Symbols for characters used in HTML and JAVASCRIPT

Symbols used in javascript and HTML entities There have been a number of times when you want to add a url in javascript but the format is wrong.In such cases the format error occurs because of the symbols/numeric characters used in javascript instead of normal characters.In this article here is a complete list of such characters and their symbols used in html and javascript.I hope it will help you a lot...

Types of HTML Forms

Types of html forms In the last two posts we discussed about html text field forms and form attributes.Although all normal forms offer text fields to be filled but sometimes you need to create other types of forms also or you need to add other types of forms also which provide specific option to be chosen such as checkboxes, radio buttons and drop down lists.And there is another type of form also which lets you send an e-mail to a specific mail address.In this post, we'll discuss only check-boxes , radio buttons and drop down lists.For a mail-to form you can go to our mail-to form post.

HTML Form attributes

HTML Form Attributes In the last post we discussed about the html forms, types of forms and show you how to create a simple form.Though form creation is an important step but forms are useless until they send the entered information to a specific location.In this post, we'll discuss the form attributes which determine the action performed by the form. The two main and most important attributes of a <form> tag are "action=" and "method=".Lets discuss each of these two. Action :When the user clicks the submit button, the content is sent to the server.The action attribute determines the location to which the content is sent.The file defined in the action attribute usually does something to the information which is done using the scripting languages.We'll not discuss that here. so, what does it look like.... <form action="example.asp"> Username:<input type="text" name="user"/> <input type="submit...

HTML forms

HTML Forms HTML is a web page markup language which designs your static web pages.The most common thing we see in a web page is a form.We normally signup for various services, comments on articles, discussion forum, polls and many other services.These all are a type of form which one can easily create using the HTML "form" tag.HTML forms are used to collect different kinds of user input. A form is an area that can contain form elements. Form elements are elements that allow the user to enter information in a form (like text fields, text area fields, drop-down menus, radio buttons, check boxes, and so on). But HTML forms are only static.Means they can send the information but can't check whether the information is valid or not. To implement the form validation, you'll have to use a scripting language such as javascript, vbscript, php etc.Form validation is an important thing but form structure is another important thing which we can do using HTML only.