HTML form tag tutorial (5): text field tag

HTML form tag tutorial (5): text field tag name: the name of the text field rows: the number of rows in the text field cols: the number of columns in the text field value: the default value of the text field File example: 11-17.htm
Insert a text field into the page.
01 <!-- ------------------------------ -->
02 <!-- File example: 11-17.htm -->
03 <!-- File Description: Insert text field-->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>Insert text field</title>
08 </head>
09 <body>
10 <h1>User Survey</h1>
11 <Form action=mailto:[email protected] method=get name=invest>
12 Please leave a message:<br>
13 <textarea name="comment" rows=5 cols=40>
14 </textarea><br>
15 <input type="submit" name="submit" value="Submit form">
16 </Form>
17 </body>
18 </html> Line 13 of the file description defines the text field as having 5 rows and 40 columns.
<br />This tag is used to create a multi-line text field in which you can enter more text.
Basic syntax <textarea name="name" rows=value cols=value value="value"> </textarea>
The meanings of these attributes are shown in the following table
Text field tag attribute value describe

<<:  Front-end JavaScript Promise

>>:  Solve the problem of Nginx returning 404 after configuring proxy_pass

Recommend

Introduction to vim plugin installation under Linux system

Table of contents Install vim plugin manager Add ...

JavaScript to implement simple carousel chart most complete code analysis (ES5)

This article shares the specific code for JavaScr...

Solution to MySQL error code 1862 your password has expired

The blogger hasn't used MySQL for a month or ...

Detailed explanation of Docker data backup and recovery process

The data backup operation is very easy. Execute t...

Mysql5.7.14 Linux version password forgotten perfect solution

In the /etc/my.conf file, add the following line ...

base target="" controls the link's target open frame

<base target=_blank> changes the target fram...

Implementation of FIFO in Linux process communication

FIFO communication (first in first out) FIFO name...

Convert psd cut image to div+css format

PSD to div css web page cutting example Step 1: F...

Tips for implementing multiple borders in CSS

1. Multiple borders[1] Background: box-shadow, ou...

Website background music implementation method

For individual webmasters, how to make their websi...

How to configure SSL for koa2 service

I. Introduction 1: SSL Certificate My domain name...

Tips for organizing strings in Linux

In Linux operations, we often replace and count s...