HTML5是一種用于創建Web頁面的語言。它基于HTML并包括許多新特性,如多媒體支持和語義標簽。下面是一個完整的HTML5代碼示例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My Website</title> </head> <body> <header> <h1>Welcome to My Website</h1> <nav> <ul> <li><a href="#about">About</a></li> <li><a href="#services">Services</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <main> <section id="about"> <h2>About Us</h2> <p>We are a company that specializes in providing high-quality products and services to our customers.</p> </section> <section id="services"> <h2>Services</h2> <ul> <li>Product Design</li> <li>Web Development</li> <li>Marketing</li> </ul> </section> <section id="contact"> <h2>Contact Us</h2> <form action="/contact" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name"> <label for="email">Email:</label> <input type="email" id="email" name="email"> <label for="message">Message:</label> <textarea id="message" name="message"></textarea> <button type="submit">Submit</button> </form> </section> </main> <footer> <p>Copyright ? My Website</p> </footer> </body> </html>該代碼包括了文檔類型聲明和HTML元素。頭部包括一個字符集聲明和網頁標題,主體包含了頁面的不同部分,如標頭,主體內容和腳注。頁面使用語義標簽,例如頭部,主體,章節和表格,這些標記使得頁面結構化并提高可讀性。 此外,頁面還包含鏈接元素,表格元素,表單元素和多媒體元素等等。這些元素使得Web頁面變得更加動態,更具互動性。 總之,HTML5是一種使得Web更好的語言。它包括了新特性并使用了更多的語義標記,從而提高了頁面結構和可讀性。如果您正在構建一個Web頁面,使用HTML5會帶來良好的體驗并使得您的網站更具有吸引力。
上一篇html5代碼實例代碼
下一篇方向 css