<!-- this is a comment to explian this code what it can do -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>progress_1</title>
</head>
<body >
<h1 style="text-align: center;">hello this world</h1>
<p style="text-align: center;">
<a href="http://www.codeforces.com" target="_blank">
codeforces
</a>
<!-- <a>中target="_blank"为跳转的时候打开新的界面,重新建立一个窗口 -->
</p>
<p style="text-align: center;">
This is<br />
a paragraph with<br/>
line breaks;
</p>
<!-- 不产生一个新段落的情况下进行换行(新行),使用<br />标签 -->
<p style="text-align: center">
<b>文本加粗</b>
<!-- <b>定义粗体文字 -->
<br />
<strong>文本加强</strong>
<!-- <strong>定义加重语气 -->
<br />
<!-- <strong>与<b>的区别,<b>只是文本加粗,<strong>是加强,对于比较重要的文字进行加粗显示 -->
<big>字体变大</big>
<!-- <big>定义大号字 -->
<br />
<em>着重文字</em>
<!-- <em>定义着重文字 -->
<br />
<i>字体变斜</i>
<!-- <i>定义斜体字 -->
<br />
<!-- <em>与<i>之间的区别,<i>只是视觉要素,表示无意义的斜体;而<em>是表达要素,表示一般的强调文本,一些语音阅读器会根据它在阅读时加强语气。 -->
<small>字体变小</small>
<!-- <small>定义小号字 -->
<br />
显示<sub>下标</sub>
<!-- <sub>定义下标字 -->
<br />
显示<sup>上标</sup>
<!-- <sup>定义上标字 -->
<br />
这是<ins>插入</ins>
<!-- <ins>定义插入字 -->
<br />
这是<del>删除</del>
<!-- <del>定义删除字 -->
<br />
</p>
<pre style="text-align:center;">
这是
预格式文本。
它保留了 空格
和换行。
</pre>
<!-- <pre>定义预格式文本 -->
<!-- pre标签很适合显示计算机代码: -->
<pre style="text-align: center;">
#include< bits/stdc++.h >
using namespace std;
int main(){
}
</pre>
<p style="text-align:center;">
<code>
computer code
</code>
<!-- <code>定义计算机代码 -->
<br />
<kbd>
keyboard input
</kbd>
<!-- <kbd>定义键盘码 -->
<br />
<samp>
Sample text
</samp>
<!-- <samp>定义计算机代码样本 -->
<br />
<tt>
Teletype text
</tt>
<!-- <tt>定义打印机代码 -->
<br />
<var>
computer variable
</var>
<!-- <var>定义变量 -->
<br />
<b>注释:</b>这些标签常用于显示计算机/编程代码
</p>
<p style="text-align:center;color: blue;">
<abbr title="etcetera">
etc.
</abbr>
<!-- <abbr>定义缩写 -->
<br />
<acronym title="World Wide Web">
WWW
</acronym>
<!-- <acronym>定义首字母缩写 -->
<br />
<!-- 在某些浏览器中,当您把鼠标移至缩略词语上时,title可用于展示表达的完整版本 -->
<!-- 仅对于IE 5中的acronym元素有效 -->
<!-- 对于Netscape 6.2 中的 abbr 和 acronym 元素都有效 -->
</p>
<p style="text-align: center;color:red;font-family:verdana" >
The <abbr title="Peopele's Republic of China">PRC</abbr> was founded in 1949s
</p>
<hr/>
<!-- <hr>定义水平线 -->
<br />
<!-- <br />就是没有关闭标签的空元素(<br>标签定义换行) -->
<p style="text-align: center;">
this is a paragraph to divide picture and words
</p>
<p style="text-align: center;">
<img src="1.png" align="center" />
</p>
<!-- style 为标签的属性 font-family为字体系列 color为颜色 font-size为字体尺寸 background-color为元素定义了背景颜色 若定义多个不同的属性则只需要使用一个style 对于不用的属性之间用";"相隔即可 -->
<p style="text-align:center;">
如果您的浏览器支持<acronym title="bi-derectional override">bdo</acronym>下一行会从左向右输出(rtl)
<br />
<bdo dir="rtl">
Here is some Hebrew text
</bdo>
</p>
这是长的引用:
<blockquote>
这是长的引用.这是长的引用.这是长的引用.
</blockquote>
这是短的引用:
<q>
这是短的引用。
</q>
<!-- <p>使用blockquote元素的话,浏览器会插入换行和外边距,而q元素不会有任何特殊的呈现 </p> -->
<br />
<p style="text-align:center;">
<a href="1.png" target="_blank">
照片
</a>
</p>
<p style="text-align:center;">
<cite>
这是引用
</cite>
<!-- <cite>定义引用、引证 -->
<br />
<dfn title="World Healh Organization">WHO</dfn>
<!-- <dfn>定义一个定义项目 -->
<br />
</p>
<address style="text-align:center;">
Writte by <a href="https://t.bilibili.com/?spm_id_from=333.1007.0.0" target="_blank">kitalekita</a>.<br />
kita,kitalekita<br / >
China
</address>
<!-- <address>定义地址 -->
</body>
</html>
道阻且长,且行且珍惜