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

html之作业

案例1:

截图:

代码:

cpp 复制代码
<!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>

案例2:

图片:

代码:
学生登记报名表

|------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|
| 学生登记报名表 |||
| 用户名 | |
| 密码 | |
| 密码确认 | |
| 性别 | 男 女 |
| 选择科目 | Linux ui自动化 mysql html </body> </html> 选择学校 <select name="" > <option value="">杭师大</option> <option value="">中医药</option> <option value="">杭商业</option> <option value="">杭旅游</option> </select> 选择文件 确认 错误 </body> |

案例3:

代码:
学生登记报名表

复制代码
		<table border="" cellspacing="" cellpadding="" bgcolor="red">
		<tr>
			<td colspan="2" >
				<p class="aa" >学生登记报名表</p>
			</td>
		</tr>
		<tr>
			<td>用户名</td>
			<td class="aa">
				<input type="text" name="" id="" value="" placeholder="请输入账号"/>
			</td>
		</tr>
		<tr>
			<td>密码</td>
			<td class="aa">
				<input type="password" name="" id="" value="" placeholder="请输入密码"/>
			</td>
		</tr>
		<tr>
			<td>密码确认</td>
			<td class="aa">
				<input type="password" name="" id="" value="" placeholder=""/>
			</td>
		</tr>
		<tr>
			<td>性别</td>
			<td>
				<input type="radio" name="sex" id="" value="" />男
				<input type="radio" name="sex" id="" 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>
					<option value="">清华</option>
					<option value="">北大</option>
					<option value="">厦大</option>
				</select>
			</td>
		</tr>
		<tr>
			<td>选择文件</td>
			<td>
				<input type="file" name="" id="" value="" />
			</td>
		</tr>
		<tr>
			<td colspan="2" class="aa">
				<input type="reset" name="" id="" value="" />重置
				<input type="submit" name="" id="" value="" />提交
			</td>
		
		</tr>
	</table>
</body>

案例4:

截图:

代码:
学生登记报名表

a

相关推荐
Never_Satisfied2 小时前
在JavaScript / HTML中,关于querySelectorAll方法
开发语言·javascript·html
夏幻灵5 小时前
HTML5里最常用的十大标签
前端·html·html5
程序员猫哥_5 小时前
HTML 生成网页工具推荐:从手写代码到 AI 自动生成网页的进化路径
前端·人工智能·html
杨超越luckly5 小时前
HTML应用指南:利用GET请求获取中国500强企业名单,揭秘企业增长、分化与转型的新常态
前端·数据库·html·可视化·中国500强
会编程的土豆1 天前
新手前端小细节
前端·css·html·项目
周航宇JoeZhou1 天前
JB2-7-HTML
java·前端·容器·html·h5·标签·表单
代码小库1 天前
【课程作业必备】Web开发技术HTML静态网站模板 - 校园动漫社团主题完整源码
前端·html
云计算DevOps-韩老师1 天前
HTML 中的行级元素(inline)、块级元素(block)、行内块元素(inline-block)
html
珹洺1 天前
Bootstrap-HTML(二)深入探索容器,网格系统和排版
前端·css·bootstrap·html·dubbo
BillKu1 天前
VS Code HTML CSS Support 插件详解
前端·css·html