HTML表单创建学习

news2024/11/27 18:40:39

文章目录

  • 1、创建HTML框架
  • 2.body标签CSS
  • 3.表单创建
    • 3.1、添加fieldset与label标签
    • 3.2、为label标签添加css样式
    • 3.3、添加input标签
    • 3.4、添加提交按钮
    • 3.5、在input标签中添加required
    • 3.6、添加minlength属性
    • 3.7、pattern属性
    • 3.8、设置表单单选按钮无法同时选中
    • 3.9、添加链接
    • 3.10、添加图片上传表单
    • 3.11、添加年龄限制属性
    • 3.12、添加下拉列表
  • 4.完整代码


1、创建HTML框架

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="styles.css" />
</head>
<body>
    
</body>
</html>

2.body标签CSS

body{
    width:100%;
    height:100vh;
    margin:0;
    background-color:#1b1b32;
    color:#f5f6f7;
  }

3.表单创建

3.1、添加fieldset与label标签

fieldset>标签:用于将表单中的相关元素进行分组,通常与 legend标签一起使用,以提供关于该组的描述。fieldset标签的主要目的是对表单元素进行逻辑分组,以提高可读性和可用性。

label 标签:用于为表单元素(如输入框、单选按钮等)定义文本描述。label 标签的主要目的是提高用户体验,因为它允许用户通过单击标签文本来选择表单元素,而不仅仅是单击表单元素本身。此外,屏幕阅读器和其他辅助技术也可以使用 label 标签来为用户提供有关表单元素的更多信息。

 <fieldset>
            <label>Enter Your First Name: </label>
            <label>Enter Your Last Name: </label>
            <label>Enter Your Email: </label>
            <label>Create a New Password: </label>
        </fieldset>

3.2、为label标签添加css样式

label{
    display: block;
    margin : 0.5rem 0;
  }

3.3、添加input标签

 <fieldset>
            <label for="first-name">Enter Your First Name:</label>
            <input id="first-name" type="text" />
            <label for="last-name">Enter Your Last Name:</label>
            <input id="last-name" type="text" />
            <label for="email">Enter Your Email:</label>
            <input id="email" type="email" />
            <label for="new-password">Create a New Password:</label>
            <input id="new-password" type="password" />
        </fieldset>

3.4、添加提交按钮

<input type="submit" value="Submit"/>

3.5、在input标签中添加required

required属性的作用是指定表单元素必须填写,不能留空。当用户提交表单时,如果该表单元素未填写,浏览器会阻止表单提交并显示错误提示。

<fieldset>
            <label for="first-name">Enter Your First Name:</label>
            <input id="first-name" type="text"  required/>
            <label for="last-name">Enter Your Last Name:</label>
            <input id="last-name" type="text"  required/>
            <label for="email">Enter Your Email:</label>
            <input id="email" type="email"  required/>
            <label for="new-password">Create a New Password:</label>
            <input id="new-password" type="password"  required/>
        </fieldset>

3.6、添加minlength属性

minlength属性的作用是指定表单元素输入的最小长度,即用户必须输入至少指定长度的字符才能通过验证。如果用户输入的字符数小于指定的最小长度,浏览器会阻止表单提交并显示错误提示。

<input id="new-password" type="password"  required minlength="8"/>

在这里插入图片描述

3.7、pattern属性

pattern属性的作用是指定表单元素输入的模式,即用户必须按照指定的模式输入内容才能通过验证。pattern属性使用正则表达式来描述输入的模式,如果用户输入的内容与正则表达式不匹配,浏览器会阻止表单提交并显示错误提示。

<input id="new-password" type="password"  required pattern="[a-z0-5]{8,}"/>

3.8、设置表单单选按钮无法同时选中

 <fieldset>
            <legend>Account type (required)</legend>
            <label for="personal-account"><input type="radio" name="account-type" checked  id="personal-account" /> Personal</label>
            <label for="business-account"><input type="radio" name="account-type" id="business-account" /> Business</label>
          </fieldset>
        <fieldset></fieldset>
        <label for="terms-and-conditions"><input type="checkbox" id="terms-and-conditions" required></label>
        <input type="submit" value="Submit"/>

在这里插入图片描述

3.9、添加链接

 <label for="terms-and-conditions"><input type="checkbox" id="terms-and-conditions" required>I accept the <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a></label>

在这里插入图片描述

3.10、添加图片上传表单

  <fieldset>
            <label>Upload a profile picture: <input type="file"></label>
        </fieldset>

在这里插入图片描述

3.11、添加年龄限制属性

<label>Input your age (years): <input type="number" min="13" max="120" /></label>

在这里插入图片描述

3.12、添加下拉列表

<fieldset>
  <label for="profile-picture">Upload a profile picture:</label>
  <input type="file" id="profile-picture" />
  <label for="age">Input your age (years):</label>
  <input type="number" id="age" min="13" max="120" />
  <label for="referrer">How did you hear about us?</label>
  <select id="referrer">
    <option value="">(select one)</option>
    <option value="1">freeCodeCamp News</option>
    <option value="2">freeCodeCamp YouTube Channel</option>
    <option value="3">freeCodeCamp Forum</option>
    <option value="4">Other</option>
  </select>
  <label for="bio">Provide a bio:</label>
  <textarea id="bio"></textarea>
</fieldset>

在这里插入图片描述

4.完整代码

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form method="post" action='https://register-demo.freecodecamp.org'>
      <fieldset>
        <label for="first-name">Enter Your First Name: <input id="first-name" name="first-name" type="text" required /></label>
        <label for="last-name">Enter Your Last Name: <input id="last-name" name="last-name" type="text" required /></label>
        <label for="email">Enter Your Email: <input id="email" name="email" type="email" required /></label>
        <label for="new-password">Create a New Password: <input id="new-password" name="new-password" type="password" pattern="[a-z0-5]{8,}" required /></label>
      </fieldset>
      <fieldset>
        <legend>Account type (required)</legend>
        <label for="personal-account"><input id="personal-account" type="radio" name="account-type" class="inline" checked /> Personal</label>
        <label for="business-account"><input id="business-account" type="radio" name="account-type" class="inline" /> Business</label>
      </fieldset>
      <fieldset>
        <label for="profile-picture">Upload a profile picture: <input id="profile-picture" type="file" name="file" /></label>
        <label for="age">Input your age (years): <input id="age" type="number" name="age" min="13" max="120" /></label>
        <label for="referrer">How did you hear about us?
          <select id="referrer" name="referrer">
            <option value="">(select one)</option>
            <option value="1">freeCodeCamp News</option>
            <option value="2">freeCodeCamp YouTube Channel</option>
            <option value="3">freeCodeCamp Forum</option>
            <option value="4">Other</option>
          </select>
        </label>
        <label for="bio">Provide a bio:
          <textarea id="bio" name="bio" rows="3" cols="30" placeholder="I like coding on the beach..."></textarea>
        </label>
      </fieldset>
      <label for="terms-and-conditions">
        <input class="inline" id="terms-and-conditions" type="checkbox" required name="terms-and-conditions" /> I accept the <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
      </label>
      <input type="submit" value="Submit" />
    </form>
  </body>
</html>
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
  font-family: Tahoma;
  font-size: 16px;
}

h1, p {
  margin: 1em auto;
  text-align: center;
}

form {
  width: 60vw;
  max-width: 500px;
  min-width: 300px;
  margin: 0 auto;
  padding-bottom: 2em;
}

fieldset {
  border: none;
  padding: 2rem 0;
  border-bottom: 3px solid #3b3b4f;
}

fieldset:last-of-type {
  border-bottom: none;
}

label {
  display: block;
  margin: 0.5rem 0;
}

input,
textarea,
select {
  margin: 10px 0 0 0;
  width: 100%;
  min-height: 2em;
}

input, textarea {
  background-color: #0a0a23;
  border: 1px solid #0a0a23;
  color: #ffffff;
}

.inline {
  width: unset;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}

input[type="submit"] {
  display: block;
  width: 60%;
  margin: 1em auto;
  height: 2em;
  font-size: 1.1rem;
  background-color: #3b3b4f;
  border-color: white;
  min-width: 300px;
}

input[type="file"] {
  padding: 1px 2px;
}

.inline{
  display: inline; 
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1668720.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

SpringSecurity的核心原理使用总结

1. SpringSecurity的核心原理 对于最原始Servlet请求处理的层次结构 客户端->过滤器链->Servlet 对于在SpringMVC中处理请求的层次结构 如何让Filter与Spring建立连接呢? 因此它增加了一个DelegatingFilterProxy 它是SpringMVC提供的的Filter,它内部代理了一个原生的F…

HC-06 蓝牙串口从机 AT 命令详解

HC-06 蓝牙串口从机 AT 命令详解 要使用 AT 命令&#xff0c;首先要知道 HC-06 的波特率&#xff0c;然后要进入 AT 命令模式。 使用串口一定要知道三要素&#xff0c;一是波特率&#xff0c;二是串口号&#xff0c;三是数据格式, HC-06只支持一种数据格式: 数据位8 位&#…

测试平台开发:Django开发实战之注册界面实现(上)

实现注册功能&#xff0c;大概包括以下几个步骤 1、设计ui ##字段 通过看数据库里面的user表里面的字段&#xff0c;可以大概知道需要几个字段&#xff1a; emailusernamepasswordpassword_confirm 生成简单的ui界面&#xff0c;复制这个html代码 然后在项目路径下面创建一…

transformer与beter

transformer与beter 解码和编码器含义tokizer标记器和one-hot独热编码编码解码--语义较好的维度空间矩阵相乘--空间变换编码理解如何构造降维的嵌入矩阵--实现到达潜空间上面是基础&#xff0c;下面是transformer正文自注意力机制注意力分数--上下文修正系数为什么需要KQ两个矩…

KAN 笔记

1 Title KAN: Kolmogorov–Arnold Networks&#xff08;Ziming Liu, Yixuan Wang, Sachin Vaidya, Fabian Ruehle, James Halverson, Marin Soljačić, Thomas Y. Hou, Max Tegmark&#xff09;【2024】 2 Conclusion Inspired by the Kolmogorov-Arnold representat…

函数式接口-闭包与柯里化

闭包 定义 示例 注意 这个外部变量 x 必须是effective final 你可以生命他是final&#xff0c;你不声明也会默认他是final的&#xff0c;并且具有final的特性&#xff0c;不可变一旦x可变&#xff0c;他就不是final&#xff0c;就无法形成闭包&#xff0c;也无法与函数对象一…

《Python编程从入门到实践》day26

# 昨日知识点回顾 添加Play按钮创建Button类绘制按钮开始游戏、游戏结束重制游戏影藏鼠标光标 # 今日知识点学习 14.2 提高等级 14.2.1 修改速度设置 # Settings.py# 加快游戏节奏的速度self.speedup_scale 1.1self.initialize_dynamic_settings()def initialize_dynamic_se…

Linux中的fork与进程地址空间

目录 前言 一、进程地址空间 二、fork的值返回 三、高清图链接 总结 前言 在博主的《进程状态解析》一文中&#xff0c;在讨论进程创建时&#xff0c;提到了一个系统调用接口fork&#xff0c;它在使用过程中表现出对于父子进程不一致的返回结果&#xff0c;而且似乎还具有…

动手学机器学习15 实战kaggle比赛

动手学机器学习15 实战kaggle比赛 1. 实战kaggle比赛&#xff1a;预测房价代码结果 2. 课程竞赛&#xff1a;加州2020年房价预测3. QA4. 用到的代码1. hashlib.sha1()2. sha1.update(data)3. train_data.iloc4. fillna(0)5. pd.get_dummies(&#xff09;6. nn.MSELoss()7. torc…

医疗行业面临的网络安全挑战及应对策略

网络攻击已经成为各行各业日益严重的威胁&#xff0c;但医疗行业尤其容易受到影响。2023年&#xff0c;医疗领域的黑客事件占数据泄露的79.7%。 医疗领域 虽然患者、医疗服务提供者和决策者都对保护医疗信息有所关注&#xff0c;但关键的弱点在于提供电子健康记录&#xff08;…

何为小波变换?

一、数学基础 小波 变换脱胎于傅里叶变换&#xff0c;但是有着傅里叶变换的优点。 1.1 点乘&#xff08;内积&#xff09; a 6; b 8; 点乘的作用&#xff1a;衡量两个事物的相似度&#xff08;Similarity&#xff09; 夹角变小&#xff0c;点乘结果变大&#xff0c;结果越…

Vscode----远程服务器改名

问题描述 一开始Autodl服务器机子很多,但是我使用vscode的时候他们的名字都一样,导致每次要打开机子是都需要重新输入ssh和密码 解决方法 修改vscode端服务器的名字即可解决 打开远程设置,选择你的ssh配置文件 将Host改为你想要的名字,保存刷新即可 点击访问博客查看更多…

全国药品价格目录数据库-药品价格查询

药品定价是一个复杂且多维的问题&#xff0c;它涉及到医疗保健系统、政府政策、市场需求、研发成本以及药品效果等多个因素。随着中国医疗改革的不断深入&#xff0c;药品定价机制也在逐步调整和完善。本文将详细探讨我国药品定价机制&#xff0c;包括其发展历程、定价方法、影…

【顺序程序设计-谭浩强适配】(适合专升本、考研)

无偿分享学习资料&#xff0c;需要的小伙伴评论区或私信dd。。。 无偿分享学习资料&#xff0c;需要的小伙伴评论区或私信dd。。。 无偿分享学习资料&#xff0c;需要的小伙伴评论区或私信dd。。。 完整资料如下&#xff1a;纯干货、纯干货、纯干货&#xff01;&#xff01;…

其他的 框架安全:Apache Solr 远程代码漏洞.(CVE-2019-0193)

什么是 Apache Solr Apache Solr是一个开源的搜索服务&#xff0c;便用Java语言开发&#xff0c;主要基于 HTTP 和ApacheLucene 实现的。Sor是一个高性能&#xff0c;采用Java5开发&#xff0c;基于Lucene的全文搜索服务器。 目录&#xff1a; 什么是 Apache Solr 生成的漏…

在统计上城乡是如何划分的

城乡二元结构&#xff0c;是长期以来我国经济社会发展的显著特点之一&#xff0c;党和政府高度重视统筹城乡发展&#xff0c;缩小城乡差距。为了对城乡发展予以准确反映和动态监测&#xff0c;提高在统计上划分城乡工作的一致性&#xff0c;国家统计局开展了统一的统计用区划代…

Redis 的 SDS 和 C 中字符串相比有什么优势?

C 语言使用了一个长度为 N1 的字符数组来表示长度为 N 的字符串&#xff0c;并且字符数组最后一个元素总是 \0&#xff0c;这种简单的字符串表示方式 不符合 Redis 对字符串在安全性、效率以及功能方面的要求。 C语言的字符串可能有什么问题&#xff1f; 这样简单的数据结构可…

vs2019 cpp20 规范的线程头文件 <thread> 注释并探讨两个问题

&#xff08;1&#xff09;学习线程&#xff0c;与学习其它容器一样&#xff0c;要多读 STL 库的源码。很多知识就显然而然的明白了。也不用死记硬背一些结论。上面上传了一份注释了一下的 源码。主要是补充泛型推导与函数调用链。基于注释后的源码探讨几个知识点。 STL 库的多…

LeetCode100题总结

LeetCode100题总结 前言LeetCode100题总结题型梳理双指针11. 盛最多水的容器234.回文链表75.颜色分类206.反转链表142.环形链表215.三数之和 滑动窗口3. 无重复字符的最长子串209. 长度最小的子数组438. 找到字符串中所有字母异位词 广搜102. 二叉树的层序遍历200. 岛屿数量617…

Mysql 8.0.33 迁移至 Postgresql 16.2

小伙伴们&#xff0c;你们好&#xff0c;我是老寇&#xff0c;我又回来&#xff0c;几个月不见&#xff0c;甚是想念啊&#xff01;&#xff01;&#xff01;&#xff01; 这不&#xff0c;云平台需要改造&#xff0c;将Mysql替换成Postgresql&#xff0c;话说回来&#xff0c…