HTML5是Hyper Text Markup Language的縮寫,是一種用來描述網(wǎng)頁的標(biāo)記語言。HTML5具有語義化良好、多媒體支持、跨平臺、易于學(xué)習(xí)等優(yōu)點。對于想要入門Web開發(fā)的人來說,HTML5是必學(xué)的語言之一。
在學(xué)習(xí)HTML5時,我們可以寫一些簡單的作品來練手。下面是一個簡單的HTML5作品代碼。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My first HTML5 page</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 small web development company based in New York.</p> </section> <section id="services"> <h2>Our Services</h2> <ul> <li>Web Design</li> <li>Web Development</li> <li>Search Engine Optimization</li> </ul> </section> <section id="contact"> <h2>Contact Us</h2> <p>Feel free to contact us if you have any questions or inquiry.</p> <form> <label for="name">Name:</label> <input type="text" id="name" name="name"><br> <label for="email">Email:</label> <input type="email" id="email" name="email"><br> <input type="submit" value="Submit"> </form> </section> </main> <footer> <p>Copyright © 2021</p> </footer> </body> </html>
以上是一個簡單的HTML5作品代碼。該作品包含了頁面結(jié)構(gòu)標(biāo)簽、內(nèi)容標(biāo)簽、多媒體標(biāo)簽等基本語言元素。希望這個簡單的作品能幫助初學(xué)者理解和掌握HTML5的基本語法和標(biāo)簽。