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

Vue implements horizontal scrolling of marquee style text

This article shares the specific code for Vue to ...

Some questions about hyperlinks

<br />I am very happy to participate in this...

SQL function to merge a field together

Recently, I need to query all the fields in a rel...

Share 8 very useful CSS development tools

CSS3 Patterns Gallery This CSS3 pattern library s...

How to display and format json data on html page

JSON data is displayed and formatted on the HTML ...

Using CSS3 to create header animation effects

Netease Kanyouxi official website (http://kanyoux...

Several common methods for setting anchor positioning in HTML

There are several ways I know of to set anchor pos...

Vue encapsulation component upload picture component

This article example shares the specific code of ...

Detailed explanation of MySql installation and login

Check if MySQL is already installed in Linux sudo...

Summary of fragmented knowledge of Docker management

Table of contents 1. Overview 2. Application Exam...

Vue makes a simple random roll call

Table of contents Layout part: <div id="a...

Code to enable IE8 in IE7 compatibility mode

The most popular tag is IE8 Browser vendors are sc...

Summary of MySQL database and table sharding

During project development, our database data is ...

How to open a page in an iframe

Solution: Just set the link's target attribute...

Detailed explanation of mysql user variables and set statement examples

Table of contents 1 Introduction to user variable...