110 lines
2.5 KiB
HTML
110 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
h1 {
|
|
border-bottom: 1px solid #8d8d8d;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>576</h1>
|
|
<h2>2</h2>
|
|
<h3>3</h3>
|
|
<h4>4</h4>
|
|
<h5>5</h5>
|
|
<h5>5</h5>
|
|
<h6>6</h6>
|
|
|
|
<select name="" id="">
|
|
<option value="">1</option>
|
|
<option value="">2</option>
|
|
<option value="">3</option>
|
|
<option value="">4</option>
|
|
</select>
|
|
|
|
<input type="text" placeholder="请输入账号">
|
|
<input type="password" placeholder="请输入密码">
|
|
<input type="file">
|
|
<input type="color" placeholder="请输入账号">
|
|
<input type="number" placeholder="请输入手机号">
|
|
<input type="button" value="登录">
|
|
<input type="date">
|
|
|
|
<input type="radio" name="dd">
|
|
<input type="radio" name="dd">
|
|
<input type="radio" name="dd">
|
|
|
|
<input type="checkbox">
|
|
|
|
<button>登录</button>
|
|
|
|
<div>div</div>
|
|
|
|
<span>span frwkvkr</span>
|
|
|
|
<p>p</p>
|
|
|
|
<form action="" method="GET">
|
|
<input type="text" placeholder="用户名">
|
|
<input type="password" placeholder="用户名">
|
|
<input type="submit" value="提交">
|
|
</form>
|
|
|
|
<table>
|
|
<th></th>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<i class=""></i>
|
|
<i>sdvfergver</i>
|
|
|
|
<img src="https://www.baidu.com/img/bd_logo1.png" alt="图片无法显示">
|
|
|
|
<iframe width="440px" height="600px" src="https://pc.qq.com/detail/13/detail_22693.html" frameborder="0"></iframe>
|
|
<ol>
|
|
<li>测试任务分为</li>
|
|
</ol>
|
|
|
|
<ul>
|
|
<li>222</li>
|
|
</ul>
|
|
|
|
<!-- <video src="" controls poster="" loop autoplay muted></video>
|
|
<audio src="" controls loop autoplay muted></audio> -->
|
|
|
|
<a href="https://pc.qq.com/detail/13/detail_22693.html" target="_blank">分为非热敷</a>
|
|
|
|
<pre>
|
|
@Reflect.metadata('name', 'A')
|
|
class A {
|
|
@Reflect.metadata('name', 'hello')
|
|
hello() {}
|
|
}
|
|
|
|
const objs = [A, new A, A.prototype]
|
|
const res = objs.map(obj => [
|
|
Reflect.getMetadata('name', obj),
|
|
Reflect.getMetadata('name', obj, 'hello'),
|
|
Reflect.getOwnMetadata('name', obj),
|
|
Reflect.getOwnMetadata('name', obj ,'hello')
|
|
])
|
|
</pre>
|
|
|
|
<del>fwefewf</del>
|
|
<p>cdcd <sup>dd</sup></p>
|
|
<p>3°</p>
|
|
|
|
|
|
</body>
|
|
<script></script>
|
|
</html> |