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

iFrame is a great way to use it as a popup layer to cover the background

I have been working on a project recently - Budou ...

MySql inserts data successfully but reports [Err] 1055 error solution

1. Question: I have been doing insert operations ...

Introduction to the use of common Dockerfile commands

Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...

The complete process of Docker image creation

Table of contents Preface Creation steps Create a...

Setting the engine MyISAM/InnoDB when creating a data table in MySQL

When I configured mysql, I set the default storag...

Brief Analysis of MySQL B-Tree Index

B-Tree Index Different storage engines may also u...

The solution record of Vue failing to obtain the element for the first time

Preface The solution to the problem of not being ...

Will Update in a Mysql transaction lock the table?

Two cases: 1. With index 2. Without index Prerequ...

MySQL not null constraint case explanation

Table of contents Set a not null constraint when ...

Share 10 of the latest web front-end frameworks (translation)

In the world of web development, frameworks are ve...

How to implement vue page jump

1. this.$router.push() 1. Vue <template> &l...

MySQL: mysql functions

1. Built-in functions 1. Mathematical functions r...