HTML form application includes the use of check boxes and radio buttons

HTML form application includes the use of check boxes and radio buttons
Including the use of check boxes and radio buttons

Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Login interface</title>
</head>
<body>
<h1>
<strong>Login screen</strong>
</h1>
<form name="f1" id="f1">
<table border="0" width="457" height="280" cellspacing="1" cellpadding="1">
<tbody><tr>
<td width="44">Login:</td>
<td width="406"><input type="text" name="login" id="login" size=""></input></td>
</tr>
<tr><td colspan="3" align="left">Professional:

<input type="radio" name="type" value="computer" checked="">Computer application</input>
<input type="radio" name="type" value="software">Software Engineering</input>
<input type="radio" name="type" value="auto">Automation</input> </td>
</tr>
Courses:

<input type="checkbox" value="">Computer Network</input>
<input type="checkbox" value="">Database Principles</input>
<input type="checkbox" value="">WEB programming</input>
<input type="checkbox" value="">Java programming</input></td>
</tr>
</tbody></table>
</form>
</body>
</html>

Actual effect:

Login screen

<<:  Jenkins builds Docker images and pushes them to Harbor warehouse

>>:  Sorting out some common problems encountered in CSS (Hack logo/fixed container/vertical centering of images)

Recommend

Why MySQL does not recommend using subqueries and joins

To do a paginated query: 1. For MySQL, it is not ...

Several ways to encrypt and decrypt MySQL (summary)

Table of contents Written in front Two-way encryp...

Install Linux rhel7.3 operating system on virtual machine (specific steps)

Install virtualization software Before installing...

How to monitor multiple JVM processes in Zabbix

1. Scenario description: Our environment uses mic...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

Introduction to fourteen cases of SQL database

Data Sheet /* Navicat SQLite Data Transfer Source...

How to use CSS to center a box horizontally and vertically (8 methods)

Original code: center.html : <!DOCTYPE html>...

vue.js downloads pictures according to picture url

Recently, when I was working on a front-end vue.j...

Front-end advanced teaching you to use javascript storage function

Table of contents Preface Background Implementati...

MySQL database introduction: detailed explanation of database backup operation

Table of contents 1. Single database backup 2. Co...

Vue custom table column implementation process record

Table of contents Preface Rendering setTable comp...

How to write memory-efficient applications with Node.js

Table of contents Preface Problem: Large file cop...

Mini Program Custom TabBar Component Encapsulation

This article example shares the specific code for...

Detailed explanation of Linux command unzip

Table of contents 1. unzip command 1.1 Syntax 1.2...