首頁 >web前端 >html教學 >在HTML5中,我們如何顯示文件中的主要內容?

在HTML5中,我們如何顯示文件中的主要內容?

PHPz
PHPz轉載
2023-08-26 23:33:02666瀏覽

在HTML5中,我們如何顯示文件中的主要內容?

HTML

標記指定文件中的主要或重要內容。它每頁只能使用一次,不能用作

範例

您可以嘗試執行以下程式碼來了解如何在 HTML 文件中顯示主要內容 -

<!DOCTYPE html>
<html>
   <body>
      <main>
         <h1>Learning</h1>
         <p>Learn to gain experience and try to share your knowledge with others.</p>

         <article>
            <h3>Web Development Tutorials</h3>
            <p>Consist of CSS, HTML, and PHP tutorials for 2nd Semester exams.</p>
         </article>

         <article>
            <h3>Academic Tutorials</h3>
            <p>Consist of Computer Fundamental, Computer Network tutorials for 1st Semester exams.</p>
         </article>
      </main>
   </body>
</html>

以上是在HTML5中,我們如何顯示文件中的主要內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除