这次奶子好疼啊...妈耶...emmmm,php,c++,Python,MySQL~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<h1>常用标签 h1</h1>
<p>常用标签 p</p>
<h1 style="background-color: red;">元素的属性</h1>
<p style="background-color: red;">属性</p>
<a href="https://www.warhut.cn">超链接:WarHut</a><br />
<a href="https://www.warhut.cn" target="_blank">超链接:warhut之新窗口跳转</a><br />
<img src="Chrysanthemum.jpg" alt="菊花" title="菊花" width="250px;" height="250px;" /><br />
<!--
绝对路径
域名/xxx/xx/xxx.xx
file:///C:/Users/Administrator/12/1.html
相对路径
下下级路径
xx/xxx/xx.x
下级路径
xx/xx.xxx
上级
../xx.xx
上上级
../../xxx.xx
-->
<ul type="disc"><!-- 实心圆 -->
<li>单元格</li>
<li>单元格</li>
<li>单元格</li>
</ul>
<ul type="circle"><!-- 空心圆-->
<li>单元格</li>
<li>单元格</li>
<li>单元格</li>
</ul>
<ul type="square"><!-- 实心方块-->
<li>单元格</li>
<li>单元格</li>
<li>单元格</li>
</ul>
<ol type="1" start="7">
<li>单元格</li>
<li value="3">单元格</li>
<li>单元格</li>
</ol>
<ol type="A"><!-- 可小写a -->
<li>单元格</li>
<li>单元格</li>
<li>单元格</li>
</ol>
<ol type="I"><!-- 可小写i -->
<li>单元格</li>
<li>单元格</li>
<li>单元格</li>
</ol>
</body>
</html>