html网页框架代码

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Website</title> <style> /* 在这里可以添加 CSS 样式 */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } header { background-color: #333; color: #fff; padding: 10px 20px; text-align: center; } nav { background-color: #666; color: #fff; padding: 10px; text-align: center; } nav ul { list-style-type: none; padding: 0; margin: 0; } nav ul li { display: inline; margin-right: 10px; } nav ul li a { color: #fff; text-decoration: none; } section { padding: 20px; } footer { background-color: #333; color: #fff; padding: 10px; text-align: center; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>Welcome to My Website</h1> </header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <section> <h2>About Us</h2> <p>This is a simple HTML website.</p> </section> <footer> <p>&copy; 2024 My Website. All rights reserved.</p> </footer> </body> </html>

这个 HTML 框架包含了一个简单的网页结构:

header 标签用于网页的标题和顶部内容。nav 标签用于导航菜单。section 标签用于包含网页的主要内容。footer 标签用于网页的页脚信息。

你可以根据自己的需求添加更多的内容和样式。

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Website</title> <style> /* CSS 样式 */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } nav { background-color: #666; color: #fff; padding: 10px; text-align: center; } nav ul { list-style-type: none; padding: 0; margin: 0; } nav ul li { display: inline; margin-right: 10px; } nav ul li a { color: #fff; text-decoration: none; } section { padding: 20px; margin: 20px; background-color: #fff; border-radius: 5px; } footer { background-color: #333; color: #fff; padding: 10px; text-align: center; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>Welcome to My Website</h1> </header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <section> <h2>About Us</h2> <p>This is a simple HTML website. You can customize it as per your requirements.</p> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi.</p> </section> <section> <h2>Services</h2> <ul> <li>Web Design</li> <li>Graphic Design</li> <li>SEO</li> <li>Content Writing</li> </ul> </section> <footer> <p>&copy; 2024 My Website. All rights reserved.</p> </footer> </body> </html>

这个框架添加了一个关于我们的部分、服务部分,并对样式进行了一些调整,例如:

section 标签的样式现在具有白色背景和圆角边框,使内容更突出。内容更加丰富,包括段落文字和服务列表。

你可以根据你的需求进一步修改和扩展这个框架,以创建符合你需求的网站。