Create html_learning.html

This commit is contained in:
guanjihuan 2022-04-24 20:28:21 +08:00
parent 337d3de874
commit 2052810a9d

View File

@ -0,0 +1,25 @@
<!-- 这是注释 -->
<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>