HTML form tag tutorial (2):

HTML form tag tutorial (2):

This tutorial introduces the application of various attributes of the FORM form tag in web design. The NAME attribute of the <FORM> tag
Basic syntax01 <Form name="Form_name"> 02 … 03 </Form>
Syntax Explanation By naming the form, you can control the relationship between the form and the backend program. File example: 11-1.htm
Insert a form into the page.
01 <!-- ------------------------------ -->
02 <!-- File example: 11-1.htm -->
03 <!-- File Description: Insert form-->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>Insert Form</title>
08 </head>
09 <body>
10 <h1>User Survey</h1>
11 <Form name=invest>
12 </Form>
13 </body>
14 </html> The file description line 11 is the form tag, and the name of the form is "invest".
Previous Page 1 2 3 4 5 Next Page Read More

<<:  Detailed explanation of the new CSS display:box property

>>:  Vue handwriting loading animation project

Recommend

Native JS to achieve sliding button effect

The specific code of the sliding button made with...

CSS to achieve chat bubble effect

1. Rendering JD Effect Simulation Effect 2. Princ...

CSS3 realizes various graphic effects of small arrows

It’s great to use CSS to realize various graphics...

JavaScript ES new feature block scope

Table of contents 1. What is block scope? 2. Why ...

Deploy Confluence with Docker

1. Environmental requirements 1. Docker 17 and ab...

MySQL data aggregation and grouping

We often need to summarize data without actually ...

How does MySQL achieve master-slave synchronization?

Master-slave synchronization, also called master-...

Will the deprecated Docker be replaced by Podman?

The Kubernetes team recently announced that it wi...

In-depth interpretation of /etc/fstab file in Linux system

Preface [root@localhost ~]# cat /etc/fstab # # /e...

CSS naming conventions (rules) worth collecting Commonly used CSS naming rules

CSS naming conventions (rules) Commonly used CSS ...

Detailed explanation of the pitfalls of MySQL 8.0

I updated MySQL 8.0 today. The first problem: Nav...

How to modify the contents of an existing Docker container

1. Docker ps lists containers 2. Docker cp copies...

MySql quick insert tens of millions of large data examples

In the field of data analysis, database is our go...