HTML基础知识
程序员文章站
2022-03-03 22:08:31
...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="keywords" content="这是关键字">
<meta name="description" content="这是网页藐视">
<meta name="icon" href="../../htmltubiao.icon">
<title>这是作业网页</title>
</head>
<body>
<p>
坚持学习天天向上
</p>
<h1>一号字体</h1>
<h2>二号字体</h2>
<h3>三号字体</h3>
<h4>四号字体</h4>
<h5>五号字体</h5>
<h6>六号字体</h6>
<b>加粗,强调效果</b>
<strong>加粗,强调内容</strong>
H<sub>2</sub>O
<br>
5<sup>2</sup>= 25
<hr>
<figure style="width:30%" ;>
<img src="shouquan.png" width='100%' alt="">
<figcaption style="text-align: center;">这个是收券码</figcaption>
</figure>
<ul>
<li>apple</li>
<li>orange</li>
<li>pear</li>
</ul>
<ol>
<li>铅笔</li>
<li>橡皮</li>
<li>尺子</li>
<li>圆规</li>
</ol>
<dl style="border: 1px solid red;">
<dt>一般仿图片</dt>
<dd>一般写标题</dd>
</dl>
<dl style="border: 1px solid red;">
<dt>一般仿图片</dt>
<dd><a>跳转京东</a></dd>
</dl>
<dl style="border: 1px solid red;">
<dt><img src="shouquan.png" alt=""></dt>
<dd>
<a href="https://www.baidu.com">跳转百度</a>
</dd>
<progress value="50" min="1" max="100">这是进度条</progress>
<meter value="70" min="1" max="100"> 定义范围,适用于密码强度提示 </meter>
</dl>
</body>
</html>
下一篇: php namespace命名空间详解