|
@@ -0,0 +1,76 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>AI观鸟</title>
|
|
|
+ <style>
|
|
|
+ body {
|
|
|
+ font-family: Arial, sans-serif;
|
|
|
+ line-height: 1.6;
|
|
|
+ margin: 0;
|
|
|
+ padding: 20px;
|
|
|
+ max-width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ header {
|
|
|
+ background-color: #f4f4f4;
|
|
|
+ padding: 20px;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ nav {
|
|
|
+ background-color: #333;
|
|
|
+ color: white;
|
|
|
+ padding: 10px;
|
|
|
+ }
|
|
|
+ nav a {
|
|
|
+ color: white;
|
|
|
+ margin-right: 15px;
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+ main {
|
|
|
+ padding: 20px;
|
|
|
+ }
|
|
|
+ footer {
|
|
|
+ background-color: #f4f4f4;
|
|
|
+ text-align: center;
|
|
|
+ padding: 10px;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <header>
|
|
|
+ <h1>欢迎来到我们的网站</h1>
|
|
|
+ <p>这是一个简单的网页示例</p>
|
|
|
+ </header>
|
|
|
+
|
|
|
+ <nav>
|
|
|
+ <a href="#home">首页</a>
|
|
|
+ <a href="#about">关于</a>
|
|
|
+ <a href="#services">服务</a>
|
|
|
+ <a href="#contact">联系我们</a>
|
|
|
+ </nav>
|
|
|
+
|
|
|
+ <main>
|
|
|
+ <section id="home">
|
|
|
+ <h2>首页内容</h2>
|
|
|
+ <p>这里是网站的主要内容区域。</p>
|
|
|
+ <article>
|
|
|
+ <h3>最新消息</h3>
|
|
|
+ <p>我们刚刚更新了网站设计!</p>
|
|
|
+ </article>
|
|
|
+ </section>
|
|
|
+
|
|
|
+ <section id="about">
|
|
|
+ <h2>关于我们</h2>
|
|
|
+ <p>我们很厉害</p>
|
|
|
+ </section>
|
|
|
+ </main>
|
|
|
+
|
|
|
+ <footer>
|
|
|
+ <p>© 2023 我的网站. 保留所有权利。</p>
|
|
|
+ </footer>
|
|
|
+</body>
|
|
|
+</html>
|