HTML 基础
HTML 标题
HTML 标题 是通过 <h1> - <h6> 等标签进行定义的。
实例
<h1>This is H1</h1>
<h2>This is H2</h2>
<h3>This is H3</h3>
<h4>This is H4</h4>
<h5>This is H5</h5>
<h6>This is H6</h6>
HTML 段落
HTML 段落是通过 <p> 标签进行定义的。
实例
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML 链接
HTML 链接是通过 <a> 标签进行定义的。
实例
<a href="https://www.baidu.com">百度</a>
HTML 图像
HTML 图像是通过 <img> 标签进行定义的。
实例
<img src="https://www.baidu.com/img/bd_logo1.png? where=super" alt="正在加载中..." width="270" height="129">