XHTML Getting Started Tutorial: Form Tags

XHTML Getting Started Tutorial: Form Tags
<br />Forms are an important channel for users to submit information. This section will introduce the basics of forms. Form Tag <form>
A form starts with a <form> tag. Users need forms to register as website members, vote, etc. Of course, XHTML alone cannot handle these forms. If you want to handle these forms, you need to use some web backend technologies like PHP and ASP. (By the way, the background of Xiaocai Niao is still very green.)
Below we introduce two common form elements: 1. Text box <form> Name: <inputtype="text" name="user"/><br/></form>
Name:

2. Password box <form> Name: <inputtype="password"name="pass"/><br/></form>
password:


As you can see, both form elements use the <input> tag, but the content filled in the password box is invisible. What determines their different types is the attribute value of the "type" attribute of the <input> tag. For example, text is a text box, and password is a password. You should have noticed that the <imput> tag is also an empty tag. He didn’t terminate the tag. We must remember to add a "/" at the end to comply with XHTML requirements.
There are many commonly used form elements, such as single choice and multiple choice, but since we can't process the form now, we can't understand the meaning of the form. So I won’t introduce it here. If you continue to learn backend technology in the future, you will naturally understand the role of form in website building.

<<:  MySQL obtains the current date and time function example detailed explanation

>>:  Details on overriding prototype methods in JavaScript instance objects

Recommend

Detailed explanation of angular parent-child component communication

Table of contents APIs used Simple Example person...

Introduction to the use of MySQL pt-slave-restart tool

Table of contents When setting up a MySQL master-...

How to delete table data in MySQL

There are two ways to delete data in MySQL, one i...

Using Docker+jenkins+python3 environment to build a super detailed tutorial

Preface: After the automation is written, it need...

How to configure the My.ini file when installing MySQL5.6.17 database

I recently used the MySql database when developin...

Detailed usage of Linux text search command find

The find command is mainly used to find directori...

MySQL scheduled full database backup

Table of contents 1. MySQL data backup 1.1, mysql...

Example of disabling browser cache configuration in Vue project

When releasing a project, you will often encounte...

jQuery plugin to achieve image suspension

This article shares the specific code of the jQue...

Vue codemirror realizes the effect of online code compiler

Preface If we want to achieve the effect of onlin...

Docker installs Elasticsearch7.6 cluster and sets password

Starting from Elasticsearch 6.8, free users are a...