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

103 lines
2.6 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.

<html>
<head>
<meta charset="utf-8" />
<title>测试</title>
</head>
<body>
<h1>1</h1>
<h2>2</h2>
<h3>3</h3>
<h4>4</h4>
<h5>5</h5>
<h6>6</h6>
<img src="jd.gif" alt="图片无法加载"/>
<!--
有序列表 & 无序列表
-->
<ul>
<li>
第一天HTML学习
<ul>
<li>ddddd</li>
<li>ddddd</li>
<li>ddddd</li>
</ul>
</li>
<li>第一天HTML1学习</li>
<li>第一天HTML2学习</li>
</ul>
<ol>
<li>第一天HTML学习</li>
<li>第一天HTML1学习</li>
<li>第一天HTML2学习</li>
</ol>
<p>sss &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sss</p>
<input type="text" placeholder="请输入你的姓名"/>
<br/>
<input type="password" placeholder="请输入你的密码"/>
<br/>
<input type="button" value="登 录"/>
<button>登 录</button>
<br/>
<input type="file">
<br/>
<input type="date">
<br/>
<input type="number" placeholder="请输入手机号" />
<br/>
<h2>(多选)请选择你的爱好:</h2>
A <input type="radio" name="gh"> 睡觉 <br>
B <input type="radio" name="gh"> 吃饭 <br>
C <input type="radio" name="gh"> dededed <br>
D <input type="radio" name="gh"> 不上班 <br>
A <input type="checkbox" name="dd"> 睡觉 <br>
B <input type="checkbox" name="dd"> 吃饭 <br>
C <input type="checkbox" name="dd"> 打游戏 <br>
D <input type="checkbox" name="dd"> 不上班 <br>
<br/>
<!--
GET: 明文地址栏传递参数.
POST: 参数放在请求体里面,不在地址栏.
--->
<form action="http://127.0.0.1/login.php" method="POST" >
<input type="text" placeholder="账户名" name="username" required readonly> <br>
<input type="password" placeholder="密码" name="userpwd" required> <br>
<input type="submit" value="登 录" >
</form>
<a href="http://www.runoob.com/java/java-tutorial.html" title="java学习" target="_blank"> java学习 </a>
<video src="xiaojieje.mp4" controls autoplay muted loop width="200" poster="jd.gif">
抱歉您的浏览器不支持video视频播放请更换新的浏览器打开本网站
</video>
</body>
</html>