93 lines
2.1 KiB
HTML
93 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<h1>标签1</h1>
|
|
<h2>标签2</h2>
|
|
<h3>标签3</h3>
|
|
<h4>标签4</h4>
|
|
<h5>标签5</h5>
|
|
<h6>标签6</h6>
|
|
|
|
<a href="https://www.bilibili.com/" target="_blank">B链</a>
|
|
<!--超链接-->
|
|
|
|
<img src="https://i0.hdslb.com/bfs/feed-admin/ba519c5077c6ec4b19281e35a4bbb106aba189a2.jpg@880w_388h_1c_95q" alt="图片无法加载">
|
|
<img src="../img/图片1.jpg" alt="图片无法载入">
|
|
<!--图片-->
|
|
|
|
|
|
<ul>
|
|
<li>序列</li>
|
|
<ul>
|
|
<li>第一章</li>
|
|
<ul>
|
|
<li>第一节</li>
|
|
</ul>
|
|
</ul>
|
|
<li>1</li>
|
|
<li>2</li>
|
|
<li>3</li>
|
|
<li>4</li>
|
|
<li>5</li>
|
|
</ul>
|
|
<ol>
|
|
<li>1</li>
|
|
<ol>
|
|
<li>!@#</li>
|
|
<li>%$^^^</li>
|
|
</ol>
|
|
<li>2</li>
|
|
<li>3</li>
|
|
<li>4</li>
|
|
</ol>
|
|
<!--序列-->
|
|
|
|
<input type="text" placeholder="请输入账户">
|
|
<input type="password" placeholder="请输入密码">
|
|
<input type="number" placeholder="请输入手机号">
|
|
<!--输入框-->
|
|
|
|
<input type="checkbox" >
|
|
<input type="checkbox" >
|
|
<input type="checkbox" >
|
|
<input type="checkbox" >
|
|
<!--多选-->
|
|
|
|
<input type="radio">
|
|
<input type="radio" name="1">
|
|
<input type="radio" name="1">
|
|
<input type="radio" name="1">
|
|
<!--单选-->
|
|
<input type="range">
|
|
<!--滑块-->
|
|
<input type="color">
|
|
<!--颜色-->
|
|
<input type="button" value="按钮">
|
|
<input type="button" value="按钮">
|
|
<input type="submit" value="submit">
|
|
<!--按钮-->
|
|
<input type="date">
|
|
<!--日期-->
|
|
<input type="file" name="" id="">
|
|
<!--上传文件-->
|
|
|
|
<select name="" id="">
|
|
<option value="">1</option>
|
|
<option value="">2</option>
|
|
<option value="">3</option>
|
|
<option value="">4</option>
|
|
</select>
|
|
<!--菜单-->
|
|
|
|
<textarea name="" id="" cols="30" rows="10" placeholder="留言"></textarea>
|
|
<!--留言框-->
|
|
|
|
|
|
</body>
|
|
</html> |