HTML基础 - QLGQ/learning-python GitHub Wiki

基本的HTML标签

HTML标题

HTML标题(heading)是通过<h1>-<h6>等标签进行定义的。

实例:

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

HTML段落

HTML段落是通过<p>标签进行定义的。

实例:

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

HTML链接

HTML链接是通过<a>标签进行定义的。

实例:

<a href="http://www.w3school.com.cn">This is a link</a>

在href属性中指定链接的地址。

HTML图像

HTML图像是通过<img>标签进行定义的。

实例:

<img src="w3school.jpg" width="104" height="142" />

图像的名称和尺寸是以属性的形式提供的。

⚠️ **GitHub.com Fallback** ⚠️