HTML5是一種新的HTML語言,它比以前的HTML更加清晰,具有更強的標記和語義。它可以被各種設備和瀏覽器解析和渲染,為用戶帶來更好的使用體驗。
<!DOCTYPE html> <html> <head> <title> My HTML5 Page </title> </head> <body> <h1>Welcome to My HTML5 Page!</h1> <p>This is a paragraph of text.</p> <nav> <a href="home.html">Home</a> <a href="about.html">About</a> <a href="contact.html">Contact</a> </nav> <section> <h2>Introduction</h2> <p>In this section, we will introduce HTML5 and its features.</p> </section> <article> <h2>Article Heading</h2> <p>This is a paragraph of text within the article.</p> <p>Another paragraph of text within the article.</p> <figure> <img src="image.jpg" alt="Image Description"> <figcaption>Caption for Image</figcaption> </figure> </article> <footer> <nav> <a href="home.html">Home</a> <a href="about.html">About</a> <a href="contact.html">Contact</a> </nav> <p>Copyright © 2021 My HTML5 Page</p> </footer> </body> </html>
以上是一個簡單的HTML5代碼示例,其中包括標題、段落、導航、區塊、文章、圖像和頁腳等標記。HTML5具有更豐富、更符合語義的標記,使得Web開發更加方便和易于理解。同時,HTML5也對移動設備和不同的屏幕尺寸做出了更好的適應,能夠提供更好的用戶體驗。
上一篇html5的代碼示范
下一篇html5的代碼約定