• 软件培训测试高级工程师多测师肖sir__html之作业11


    html之作业

    案例1:

    截图

    代码:

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="UTF-8">
    		<title>表单</title>
    	<`/head>
    	<body>
    	    <table style="background-color:red" border="2" cellspacing="5" cellpadding="4">
    	    	<tr>
    	    		<td height="100" style="font-size: 30px" style="font-weight: bold;" style="font-family: '微软雅黑';"align="center" colspan="2" >学生登记报名表</td>
    	    	</tr>
    	    	<tr>
    	    		<td>用户名</td>
    	    		<td align="center" height="30" width="500"><input type="text" name="" id="" value="" placeholder="请输入用户名"/></td>
    	    	</tr>
    	    	<tr>
    	    		<td >密码</td>
    	    		<td align="center" height="30" width="500"><input type="password" name="" id="" value="" placeholder="请输入密码"/></td>
    	        </tr>
    	        <tr>
    	        	<td>密码确认</td>
    	        	<td align="center" height="30" width="500"><input type="password" name="" id="" value="" placeholder="请确认密码"/></td>
    	        </tr>
    	        <tr>
    	        	<td>性别</td>
    	        	<td><input type="radio" name="sex" id="sex" value="" /><input type="radio" name="sex" id="sex" value="" /></td>
    	        </tr>
    	        <tr>
    	        	<td>选择科目</td>
    	        	<td><input type="checkbox" name="" id="" value="" />html <input type="checkbox" name="" id="" value="" />python <input type="checkbox" name="" id="" value="" />linux <input type="checkbox" name="" id="" value="" />mysql</td>
    	        </tr>
    	        <tr>
    	            <td>选择学校</td>
    	            <td><select name="">
    	            	<option value="">-选择就读的学校-</option>
    	            		
    	            </select></td>
    	        </tr>
    	        <tr>
    	            <td>选择文件</td>
    	            <td><input type="file" name="" id="" value="" /></td>
    	        </tr>
    	        <tr>
    	        	<td align="center" colspan="2"><input type="reset" /><input type="submit"/></td>
    	        	
    	</body>
    </html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 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
    • 46
    • 47
    • 48

    案例2:
    图片:
    在这里插入图片描述
    代码:

    学生登记报名表

    学生登记报名表

    用户名
    密码
    密码确认
    性别 男 女
    选择科目 Linux ui自动化 mysql html
    					
    				
    			
    选择学校
    选择文件
    确认
    错误
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29

    在这里插入图片描述
    案例3:

    在这里插入图片描述

    代码:

    学生登记报名表
    		

    学生登记报名表

    用户名
    密码
    密码确认
    性别
    选择科目 html python linux mysql
    选择学校
    选择文件
    重置 提交
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 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
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66

    案例4:
    截图:
    在这里插入图片描述

    代码:

    学生登记报名表

    a

  • 相关阅读:
    任意文件下载漏洞(CVE-2021-44983)
    mysql虚拟列问题
    Linux之Redis 缓存雪崩,击穿,穿透
    女生学大数据好就业吗?前景如何?
    基于安卓的共享自习室的设计与实现
    uniapp使用华为云OBS进行上传
    Nacos注册中心3-Cleint端(注册和心跳)
    设置docker启动项目
    AI是如何影响全球的安防监控产业
    RK3588平台开发系列讲解(显示篇)MIPI DSI协议介绍之分层
  • 原文地址:https://blog.csdn.net/m0_47403059/article/details/133694424