在現代瀏覽器中,HTML5已成為一種基本的標準。它使得網頁變得更加清晰、易于維護和可靠。當然,作為網站管理員,您可能會想將HTML5設為網站的首頁。
要做到這一點,請按照以下步驟進行:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>My Home Page</title> <link rel="stylesheet" href="style.css"> </head> <body> <header> <h1>Welcome to My Home Page!</h1> <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <main> <p>Hello and welcome to my home page!</p> <p>This page is all about me and my interests. I hope you find it interesting and informative.</p> </main> <footer> <p>Copyright ? 2021.</p> </footer> </body> </html>
以上便是一個基本的HTML5網頁代碼。要將其設為首頁,只需要在主文件夾中添加一個名為“index.html”的文件,并將以上代碼復制到該文件中即可!