60 lines
1.6 KiB
HTML
60 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
<title>html第二课</title>
|
||
</head>
|
||
<body>
|
||
|
||
<a href="https://www.baidu.com/" target="_blank">我是百度</a>
|
||
|
||
<img src="https://cn.vuejs.org/images/logo.png" alt="抱歉,图片无法加载"/>
|
||
|
||
|
||
<h1>我是标题1</h1>
|
||
<h2>我是标题2</h2>
|
||
<h3>我是标题3</h3>
|
||
<h4>我是标题4</h4>
|
||
<h5>我是标题5</h5>
|
||
<h6>我是标题6</h6>
|
||
|
||
|
||
<p>我是文章的<br>正文内容!!!</p>
|
||
|
||
|
||
<button type="submit">登录</button>
|
||
<br/>
|
||
<input type="text" placeholder="请输入用户名" value="编码猿"/>
|
||
<br/>
|
||
<input type="password" placeholder="请输入密码"/>
|
||
<br/>
|
||
<input type="date" >
|
||
<br/>
|
||
<input type="datetime-local">
|
||
<br/>
|
||
<input type="file" >
|
||
<br/>
|
||
<input type="color" disabled>
|
||
<br/>
|
||
<input type="number" readonly placeholder="请输入手机号" autofocus>
|
||
|
||
<br/><br/>
|
||
<h2>1. (单选题) 请问1+1等于几?</h2>
|
||
<input type="radio" name="aw"> A: 1 <br/>
|
||
<input type="radio" name="aw"> B: 2 <br/>
|
||
<input type="radio" name="aw"> C: 3 <br/>
|
||
<input type="radio" name="aw"> D: 4 <br/>
|
||
|
||
<br/>
|
||
<h2>2. (多选题) 你为什么想要学习编程?</h2>
|
||
<input type="checkbox" name="aw"> A: 因为我闲着蛋疼 <br/>
|
||
<input type="checkbox" name="aw"> B: 感觉这个行业很酷 <br/>
|
||
<input type="checkbox" name="aw"> C: 啊?我不知道啊,随便选的 <br/>
|
||
<input type="checkbox" name="aw"> D: 我喜欢编程,对他很感兴趣 <br/>
|
||
|
||
<input type="hidden" value="喜欢">
|
||
|
||
</body>
|
||
</html> |