Skip to main content

Reset button


Reset: It is a good idea to include one of these for each form where users are entering data. It allows the surfer to clear all the input in the form.
<INPUT TYPE=“RESET”>
Reset buttons have the following attributes:
TYPE: reset.
VALUE: determines the text label on the button, usually Reset.

Example on Reset Button


<FORM     Action="URL"         method="get">
First Name: <INPUT TYPE="TEXT" Size=25 name="firstName"> <BR>

Family Name: <INPUT TYPE="TEXT" Size=25 name="LastName"><BR>

<BR>
<FONT Color = red>

<STRONG><font size=5>Press Here to submit the data:</font></STRONG><BR>

<INPUT TYPE="submit" VALUE="SubmitData">

<INPUT TYPE="RESET" VALUE="Reset">

</FORM>


Output


Comments

Popular posts from this blog

Introduction of SQL

Introduction of SQL SQL (Structure Query Language)  was initially developed at IBM by Donald D. Chamberlin and Raymond F. Boyce in the early 1970s. This version, initially called SEQUEL (Structured English Query Language), was designed to manipulate and retrieve data stored in IBM's original quasi-relational database management system. Features of SQL SQL is not a case sensitive language. Every commands in SQL should ends with semicolon(;). SQL can also called as sequel (SEQUEL). SQL Sub Language SQL is mainly divided into four sub language Data Definition Language(DDL) Data Manipulation Language(DML) Transaction Control Language(TCL) Data Control Language(DCL) Only for remember You can remember all these command like below; DDL Commands "dr. cat" d-Drop, r-Rename, c-Create, a-Alter, t-Truncate. DML commands "sudi". s-Select, u-Update, d-Delete, i-Insert.

css introduction

What is CSS? •Stands for Cascading Style Sheet •CSS allows you to style HTML elements, or define how they are displayed. •Styles are normally stored in Style Sheets •External Style Sheetscan save you a lot of work •External Style Sheets are stored in CSS files •Multiple style definitions will cascadeinto one •Examples: –Changing the color of text –Specifying the size and position of a div What is CSS? (cont.) •CSS is an alternative to the “style” attribute. – <div style=“height:500px; width:200px”></div> •Advantages: –Can control the style of many different elements with a single command. –Separation of function: HTML can focus on content while CSS handles styling. CSS (Cascading Style Sheet) •Simple mechanism for adding style to web page •Code be embedded into the HTML file •HTML tag: <style type=“text/css”>CODE</style> •Also be in a separate file FILENAME.css •HTML tag: <link rel=“stylesheet” href=“scs.css” type=“text/css”> •St...

SQL - Create Table

SQL First Query Before you start your first sql query, need to install any database software, here i will use oracle 10g. If you have no any database just download and install. Note:  At the time of installation give user name system and password: system. Steps to get start with SQL Run SQL First connect with database. For connect with database type: connect system and type password system Now you can create table. Create table Syntax CREATE TABLE table_name ( column_name1 data_type(size), column_name2 data_type(size), column_name3 data_type(size), .... ); Example CREATE TABLE Employee ( emp_id int(5), name varchar(20), salary int(10) ); Employee table emp_id name salary