首页 > 其他分享 >每日汇报 第五周第二天 html表单

每日汇报 第五周第二天 html表单

时间:2023-07-24 21:44:08浏览次数:35  
标签:color border 表单 width 汇报 html input margin

今日学习:

  html表单;

 1 <!DOCTYPE html>
 2 <html lang="en">
 3   <head>
 4     <meta charset="UTF-8">
 5     <title>Registration Form</title>
 6     <link rel="stylesheet" href="styles-form.css" />
 7   </head>
 8   <body>
 9     <h1>Registration Form</h1>
10     <p>Please fill out this form with the required information</p>
11     <form method="post" action='https://register-demo.freecodecamp.org'>
12       <fieldset>
13         <label for="first-name">Enter Your First Name: <input id="first-name" name="first-name" type="text" required /></label>
14         <label for="last-name">Enter Your Last Name: <input id="last-name" name="last-name" type="text" required /></label>
15         <label for="email">Enter Your Email: <input id="email" name="email" type="email" required /></label>
16         <label for="new-password">Create a New Password: <input id="new-password" name="new-password" type="password" pattern="[a-z0-5]{8,}" required /></label>
17       </fieldset>
18       <fieldset>
19         <label for="personal-account"><input id="personal-account" type="radio" name="account-type" class="inline" /> Personal Account</label>
20         <label for="business-account"><input id="business-account" type="radio" name="account-type" class="inline" /> Business Account</label>
21         <label for="terms-and-conditions">
22           <input id="terms-and-conditions" type="checkbox" required name="terms-and-conditions" class="inline" /> I accept the <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
23         </label>
24       </fieldset>
25       <fieldset>
26         <label for="profile-picture">Upload a profile picture: <input id="profile-picture" type="file" name="file" /></label>
27         <label for="age">Input your age (years): <input id="age" type="number" name="age" min="13" max="120" /></label>
28         <label for="referrer">How did you hear about us?
29           <select id="referrer" name="referrer">
30             <option value="">(select one)</option>
31             <option value="1">freeCodeCamp News</option>
32             <option value="2">freeCodeCamp YouTube Channel</option>
33             <option value="3">freeCodeCamp Forum</option>
34             <option value="4">Other</option>
35           </select>
36         </label>
37         <label for="bio">Provide a bio:
38           <textarea id="bio" name="bio" rows="3" cols="30" placeholder="I like coding on the beach..."></textarea>
39         </label>
40       </fieldset>
41       <input type="submit" value="Submit" />
42     </form>
43   </body>
44 </html>

CSS:

 1 body {
 2   width: 100%;
 3   height: 100vh;
 4   margin: 0;
 5   background-color: #1b1b32;
 6   color: #f5f6f7;
 7   font-family: Tahoma;
 8   font-size: 16px;
 9 }
10 
11 h1, p {
12   margin: 1em auto;
13   text-align: center;
14 }
15 
16 form {
17   width: 60vw;
18   max-width: 500px;
19   min-width: 300px;
20   margin: 0 auto;
21   padding-bottom: 2em;
22 }
23 
24 fieldset {
25   border: none;
26   padding: 2rem 0;
27   border-bottom: 3px solid #3b3b4f;
28 }
29 
30 fieldset:last-of-type {
31   border-bottom: none;
32 }
33 
34 label {
35   display: block;
36   margin: 0.5rem 0;
37 }
38 
39 input,
40 textarea,
41 select {
42   margin: 10px 0 0 0;
43   width: 100%;
44   min-height: 2em;
45 }
46 
47 input, textarea {
48   background-color: #0a0a23;
49   border: 1px solid #0a0a23;
50   color: #ffffff;
51 }
52 
53 .inline {
54   width: unset;
55   margin: 0 0.5em 0 0;
56   vertical-align: middle;
57 }
58 
59 input[type="submit"] {
60   display: block;
61   width: 60%;
62   margin: 1em auto;
63   height: 2em;
64   font-size: 1.1rem;
65   background-color: #3b3b4f;
66   border-color: white;
67   min-width: 300px;
68 }
69 
70 input[type="file"] {
71   padding: 1px 2px;
72 }
73 
74 a {
75   color:dfdfe2;
76 }

 

JAVA学习内容:

明确Swing的用途,熟悉Swing的常用组件。
掌握JFrame窗体和JDialog对话框的使用方法。
熟练掌握常用的4种布局管理器。
掌握JPanel面板和JScrollPane面板的使用方法。
明确使用JPanel面板时,须依赖JFrame窗体。
明确JScrollPane滚动面板不能使用布局管理器,且只能容纳一个组件。

明日计划:

复习之前学的html和css内容,继续Java学习

遇到困难:东西多

标签:color,border,表单,width,汇报,html,input,margin
From: https://www.cnblogs.com/qmz-znv2/p/17578435.html

相关文章

  • 摆脱效率低的办公,可以了解流程表单设计器
    目前,低效率的办公已经无法满足市场需求。那么,怎么样才能实现高效率办公?通过什么样的平台提质增效?低代码开发平台是目前在现代化办公环境中较为流行的平台,其中的流程表单设计器易操作、灵活、便捷,深得广大用户的青睐和喜欢。今天,我们一起来了解低代码开发平台以及流程表单设计器的......
  • Apache POI excel导出(单元格html代码渲染)
    需求:将渲染后的html代码,导出到单元格中。依赖<dependency><groupId>com.deepoove</groupId><artifactId>poi-tl</artifactId><version>1.8.2</version></dependency>代码实现publicclassExcelUtil{/***设置单元格......
  • 修改 Joomla! 1.5 的 HTML 输出而不动核心文件 (附api文档)
    现在到了Joomla!1.5平台,前面这个方法不灵了。不过,Joomla!开发团队早就给出了更好的方案,总结起来就是3个字母:MVC。  MVCinphpProgramming MVC等几个概念     MVC是Model-View-Controller(模型-视图-控制器)的缩写。这是Joomla!1.5采纳的一种新型的......
  • 浅析html5的dataset
     前言: 很多时候,我们在操作页面某些元素的时候,需要存储一些数据,一般大家很常见的方式都会设置一些自定义属性,比如: 微博feedlist里面的图片放大:  大家看到有一个自定义的key------action-data,里面存储了一些数据。  那问题来了: 自定义属性命名有没有规范或者标准??获取......
  • html 之 jQuery库
    一、jQuery介绍1、库就类似于是Python中的模块,简称为jq2、jQuery就是js、css等的封装版本,只要一封装,写法较简单3、jQuery是一个轻量级的、兼容多浏览器的JavaScript库,封装版本的js。4、jq的优势简化DOM操作:jQuery提供了简单易用的选择器和DOM操作方法,使得在HTML文......
  • .net core 解析Html辅助类
    .NETCore解析HTML辅助类实现流程为了实现.NETCore解析HTML的辅助类,我们需要按照以下步骤进行操作:步骤描述1安装必要的NuGet包2创建HTML解析类3实现解析HTML的方法下面我们来看具体的实现步骤和每一步需要做的事情。1.安装必要的NuGet包首先,我们需要......
  • 让你一天就可以掌握HTML5的基础
    HTML5一直是非常热门的话题,因此此系列文章主要从一些基本功能开始讲起,逐步深入了解HTML5的新概念。 首先了解一些基本的术语和概念。SGML,HTML,XML三者之间的区别Doc类型是什么HTML5有什么新特点新优势。学习HTML5 在开始之前首先来区分SGMC,HTML,XML三者......
  • 每日汇报 第五周第一天 CSS颜色
    今日学习:CSS颜色的学习,代码如下:html1<!DOCTYPEhtml>2<htmllang="en">3<head>4<metacharset="utf-8">5<metaname="viewport"content="width=device-width,initial-scale=1.0">......
  • HTML | HTML列表
    1.有序列表概念:有顺序或侧重顺序的列表。<h2>要把大象放冰箱总共分几步</h2><ol><li>把冰箱门打开</li><li>把大象放进去</li><li>把冰箱门关上</li></ol>2.无序列表概念:无顺序或不侧重顺序的列表。<h2>我想去的几个城市</h2><ul><li>成都</li>......
  • HTML | HTML超链接
    主要作用:从当前页面进行跳转。可以实现:①跳转到指定页面、②跳转到指定文件(也可触发下载)、③跳转到锚点位置、④唤起指定应用。标签名标签语义常用属性单/双标签a超链接href:指定要跳转到的具体目标。target:控制跳转时如何打开页面,常用值如下:_self:在本窗......