HTML基础教程(2)-标签概述

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_42183408/article/details/88950800

欢迎来到HTML的世界,现在开始HTML之旅吧!

标题

<h1>一级标题</h1>
<h2>二级标题</h2>
<h3>三级标题</h3>
<h4>四级标题</h4>
<h5>五级标题</h5>
<h6>六级标题</h6>

效果:

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

段落

<p>段落</p>

效果:

段落

超链接

<a href="https://code-nick-python.github.io">我的个人博客</a>

效果:
我的个人博客

粗体

<b>粗体</b>

效果:
粗体

斜体

<i>斜体</i>

效果:
斜体

图片

<img src="https://code-nick-python.github.io/img/computer.jpg">

效果:

下次见!

猜你喜欢

转载自blog.csdn.net/weixin_42183408/article/details/88950800