Files
2024-09-27 02:06:13 +08:00

93 lines
2.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>Document</title>
<link rel="shortcut icon" href="https://assets2016.bmob.cn/img/favicon.ico" type="image/x-icon"/>
</head>
<body>
<a href="https://www.baidu.com">超链接</a>
<img src="test/demo.jpg" alt="图片无法显示" srcset="">
<h1>1</h1>
<h2>2</h2>
<h3>3</h3>
<h4>4</h4>
<h5>5</h5>
<h6>6</h6>
<input type="text" placeholder="输入账户">
<input type="password" placeholder="输入密码">
<input type="date">
<input type="file">
<input type="number" placeholder="请输入手机号">
<input type="color">
<input type="hidden" value="test/demo.jpg">
<input type="radio" name="answer">
<input type="radio" name="answer">
<input type="checkbox" name="answer1">
<input type="checkbox" name="answer1">
<input type="checkbox" name="answer1">
<input type="checkbox" name="answer1">
<br/>
<h2>请输入账号:
<input type="text" placeholder="账号">
</h2>
<h2>请输入密码:
<input type="password" autofocus placeholder="密码">
</h2>
<h2>请选择头像:
<input type="file">
</h2>
<h2>请选择你的兴趣爱好</h2>
<input type="checkbox"> 骑车 <br>
<input type="checkbox"> 打游戏 <br>
<input type="checkbox"> 逛街,看电影 <br>
<input type="checkbox"> 游泳 <br>
<h2>你喜欢我的这个网站吗?</h2>
<input type="radio" name="youlike"> 喜欢 <br>
<input type="radio" name="youlike"> 不喜欢 <br>
<input type="radio" name="youlike"> 一般 <br>
<input type="radio" name="youlike"> 还好 <br>
<input type="button" value="提交注册信息">
<ul>
<li>
1第一章html
<ul>
<li>html概念</li>
<li>html基本组成</li>
<li>html标签</li>
</ul>
</li>
<li>2第二章css</li>
<li>3第三章js</li>
</ul>
<ol>
<li>第一章html</li>
<li>第二章css</li>
<li>第三章js</li>
</ol>
<video src="http://www.runoob.com/try/demo_source/movie.mp4" controls loop muted autoplay></video>
</body>
</html>