Html
设计注册页⾯(简单样式)
代码如下:<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>我的注册页</title>    <link rel="stylesheet" href="CSS/Register.css"></head><body><form name="Register" method="get" action="index.html">    <fieldset class="Page">        我的注册页        <fieldset class="PageMain">            <legend>必填项</legend>            <label>⽤户名</label>            <input type="text" placeholder="请输⼊⽤户名" required="required"><br/>            <label>密码</label>            <input type="password" name="points" minlength="6" maxlength="10" placeholder="请输⼊密码(6-10个字符)" required="required"><br/>            <label>确认密码</label>            <input type="password" placeholder="再次输⼊密码(6-10个字符)" minlength="6" maxlength="10" required="required" oninput="if (value>10)value
<label>性别</label>            <input type="radio" name="sex" >男            <input type="radio" name="sex" checked="checked">⼥<br>            <label>电话</label>            <input type="tel" id="tel" minlength="11" maxlength="11" placeholder="请输⼊11位⼿机号码" required="required" checked="checked"><br>       
    <label>邮箱</label>            <input type="email" id="TxtEmail" name="TxtEmail" required="required" placeholder="请输⼊邮箱地址" checked="checked"/><br>            <label>所在地</label>            <select name="" id="place">                <optgroup label="四川省">                    <option value="cd">成都市</option>                    <option value="nc">南充市</option>                    <option value="dz">达州市</option>                    <option value="qt">其他</option>                </optgroup>                <optgroup label="陕西省"></optgroup>                <option value="xa">西安市</option>                <option value="xy">咸阳市</option>                <option value="qt2">其他</option>            </select><br>        </fieldset>        <fieldset class="PageMain">            <legend>选填项</legend>            <label>出⽣⽇期</label>            <input type="date" id="date" value="2000-02-24">            <br>            <label>爱好</label>            <div>                <input type="checkbox" id="love1" value="抽烟" checked="checked">抽烟                <input type="checkbox" id="love2" value="喝酒" checked="checked">喝酒                <input type="checkbox" id="love3" value="烫头" >烫头                <input type="checkbox" id="love4" value="看郭德纲">看郭德纲                <input type="checkbox" id="love5" value="看于谦" >看于谦                <input type="checkbox" id="love6" value="放屁" >放屁            </div><br>            <label>你喜欢的颜⾊</label>            <input type="color" value="#FFB6C1">            <label>主页地址</label>            <input type="text" placeholder="www.XXX.YYY/ZZZ"><br>1
2
3
4
5
6
7
8
9
10
11
12
13
myarray是什么意思14
15
16
17
18
19
20
xml文件有几种
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
matlab fread
46
47
48指数函数曲线
html个人网页制作代码范列
三星宣布生产nand闪存芯片49
50
51
52
53
54
55
56
57
58
<label></label>            <input type="text" value="637300"><br>            <label>本门课程的考试时间</label>            <input type="week" value="2021-W19"><br>            <label>你的头像</label>            <input type="file" value="选择⽂件"><br>        </fieldset>        <input type="submit" value="提交注册"/>        <input type="button" value="取消">    </fieldset></form></body></html>5960616263646566676869707172737475