以下是一个简单的静态网页项目示例,包含 HTML、CSS 和基本的盒模型布局,页面展示了一个产品介绍页面,您可以根据自己的需求进行修改和扩展。 ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>产品介绍</title> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="container"> <h1>智能手表</h1> <div class="product-image"> <img src="watch.jpg" alt="智能手表"> </div> <div class="product-details"> <p>这款智能手表具有以下令人惊艳的特点:</p> <ul> <li>精准的健康监测功能,包括心率、睡眠和运动追踪。</li> <li>时尚的外观设计,适合各种场合佩戴。</li> <li>长续航能力,无需频繁充电。</li> </ul> <p>立即购买,开启智能生活新篇章!</p> </div> </div> </body> </html> ``` ```css body { font-family: Arial, sans-serif; background-color: #f5f5f5; } .container { width: 80%; margin: 0 auto; background-color: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); } h1 { color: #333; } .product-image { text-align: center; } .product-image img { width: 300px; height: 300px; border-radius: 50%; } .product-details { margin-top: 20px; } .product-details ul { list-style-type: none; padding: 0; } .product-details ul li { margin-bottom: 10px; } ``` 在上述示例中: - HTML 部分使用了正确的标记结构来组织页面内容。 - CSS 部分设置了页面的整体样式,包括容器的布局、字体、颜色、图片样式等,遵循了盒模型的规则。 [2024-11-02 08:08:54 | AI写代码神器 | 598点数解答]