Files
ClassContent/历届学生/fontendsix/每日课程/2021-10-18/index.html
2024-09-27 02:06:13 +08:00

134 lines
3.6 KiB
HTML
Raw 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>
<a href="https://blog.csdn.net/qq_16559905/article/details/51182085" target="_blank"> 变得很低很低和 </a>
<h1>h1</h1>
<h2>h2</h2>
<h3>h3</h3>
<div>
段落标签<i>标签</i>标签段落标签段落标签段落标签段落标签段落标签段落标签
</div>
<h4>h4</h4>
<h5>h5</h5>
<h6>h6</h6>
<p>段落标签段落标签段落标签段落标签段落标签段落标签段落标签段落标签</p>
<p>段落标签段落标签段落标签段落标签段落标签段落标签段落标签段落标签</p>
<div>段落标签段落标签段落标签段落标签段落标签段落标签段落标签段落标签</div>
<div>段落标签段落标签段落标签段落标签段落标签段落标签段落标签段落标签</div>
<img src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" alt="图片无法加载" />
<ul>
<li>
无序列表1
<ul>
<li>无序列表1-1</li>
<li>无序列表1-2</li>
<li>无序列表1-3</li>
</ul>
</li>
<li>无序列表2</li>
<li>无序列表3</li>
<li>无序列表4</li>
</ul>
<ol>
<li>有序列表1</li>
<li>有序列表2</li>
<li>有序列表3</li>
<li>有序列表4</li>
</ol>
<input type="text">
<input type="number">
<input type="password">
<input type="password">
<input type="file">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="radio" name="li">
<input type="radio" name="li">
<input type="radio" name="li2">
<input type="radio" name="li2">
<input type="hidden" name="dd">
<input type="button" value="登录" >
<input type="reset" value="登录">
<input type="submit" value="登录">
<br><br><br>
<form action="http://192.168.1.131/" method="post">
<input type="number" value="11111" placeholder="输入手机号" name="phone" readonly>
<input type="password" placeholder="输入密码" maxlength="5" name="pwd">
<input type="reset" value="清除">
<input type="submit" value="提交" disabled>
</form>
<video loop poster="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" src="https://www.runoob.com/try/demo_source/movie.mp4" controls >
</video>
<audio src=""></audio>
<select name="" id="">
<option value="">请选择</option>
<option value="10003">合肥</option>
<option value="10001">南京</option>
<option value="10002">北京</option>
</select>
<div>
HTML的 <strong>全称</strong> 为超文 <em>本标记</em> 语言,是 <i>一种标</i> 记语言。它 <big>包括一</big> 系列标签.通过这些标签可 <small>以将网</small> 络上的文 <sub>档格式</sub> 统一,使分散的 <sup>Internet资源</sup> 连接为 <del>一个逻辑</del> 整体。HTML文本是由HTML命令组成的描述性文本HTML命令可以说明文字图形、动画、声音、表格、链接等。超..
</div>
<table>
<tr>
<th>年份</th>
<th>月份</th>
</tr>
<tr>
<td>1990</td>
<td>10</td>
</tr>
<tr>
<td>2001</td>
<td>11</td>
</tr>
</table>
<textarea placeholder="sdwdw" name=""></textarea>
</body>
</html>