实现 HTML 段落的 HTML 程序


2023年2月18日, Learn eTutorial
2370

HTML 段落由 <p> 标签定义。 <p> 和 </p> 标签内的文本将被视为一个段落。让我们看看实现段落的 HTML 程序示例。

 

HTML 源代码

                                          <!DOCTYPE html>
 <html>
    <head>
        <title>
            HTML PROGRAMING TUTORIALS
        </title>
    </head>
     <body>
        <p> 
HTML is the most widely used markup language for developing and structuring web pages on the internet. It defines as the building blocks of our webpage. It consists of a series of elements or tags which can be used to structure a webpage and these HTML markup tags are usually called HTML tags. 
</p>
<p> 
HTML tags are keywords surrounded by angle brackets like <html>. We can say HTML tags are nested, which means there are opening and closing tags with the content in between those tags. 
</p>
    </body>
</html>

                                      

输出

HTML