html段落标签练习

HTML/CSS网页设计与开发一站式学习 练习5.4

<html>
    <head>
        <title>综合使用段落标签</title>
    </head>
    <body>
        <center>
            <p> 《黄鹤楼》</p>
            <br>
            <hr width="500" align="center"/>
            <br>
            昔人已乘黄鹤去,此地空余黄鹤楼。<br>
            黄鹤一去不复返,白云千载空悠悠。<br>
            晴川历历汉阳树,芳草萋萋鹦鹉洲。<br>
            日暮乡关何处是,烟波江上使人愁。
            <hr width="500" align="center"/>
        </center>
        <p><font face="黑体" align="left"><strong>唐代·崔颢</strong></font></p>
    </body>
</html>

<center></center>:段落居中对齐标签

<hr>:水平分割线

<strong></strong>:强调(加粗)


猜你喜欢

转载自blog.csdn.net/weixin_38258767/article/details/81045621