HTML環境代碼表是指在Web開發中常用的HTML代碼
<!DOCTYPE html><title>Title of the document</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <script src="script.js"></script><header> <h1>This is the header</h1> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <main> <section> <h2>Section Title</h2> <p>This is a paragraph.</p> <img src="image.jpg" alt="image"> </section> </main> <footer> <p>Copyright © 2021</p> </footer> </body>其中,<!DOCTYPE html>聲明該文檔是HTML5類型;<html>表示文檔的根元素;<head>定義文檔頭部信息,包括文檔標題、字符集、視窗大小、樣式表和腳本等;<body>為文檔的主體部分,其中包括具體內容和結構,包括header、main、footer等組件。使用HTML環境代碼表可以快速開發Web頁面,提高開發效率。