2023-11-07 03:38:46 +08:00

25 lines
542 B
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.

<!-- 这是注释 -->
<h1>这是标题 1</h1>
<h2>这是标题 2</h2>
<h3>这是标题 3</h3>
<h4>这是标题 4</h4>
<p>这是一个段落。</p>
<p>a和b之间有个空格a&nbsp;b</p> <!-- &nbsp;代表空格,注意后面有个分号 -->
<a href="https://www.guanjihuan.com">这是一个链接https://www.guanjihuan.com</a>
<br /> <!-- 这是换行-->
<img src="图片的链接" />
<ul>
<li>无序列表 内容1</li>
<li>无序列表 内容2</li>
</ul>
<ol>
<li>有序列表 内容1</li>
<li>有序列表 内容2</li>
</ol>