-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (36 loc) · 1.17 KB
/
about.html
File metadata and controls
36 lines (36 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>关于我们</title>
<link rel="stylesheet" href="styles/page.css">
<link rel="stylesheet" href="styles/navbar.css">
</head>
<body>
<header>
<div class="logo">
<img src="images/logo.png" alt="logo">
</div>
<nav class="navbar">
<a href="index.html">首页</a>
<a href="oranges.html">赣南脐橙</a>
<a href="robotic-arm.html">机械臂</a>
<a href="cultural-products.html">文创产品</a>
<a href="about.html">关于我们</a>
<a href="contact.html">联系我们</a>
<div class="nav-right">
<a href="login.html">登录</a>
<a href="register.html">注册</a>
</div>
</nav>
</header>
<main>
<div class="background" style="background-image: url('images/background-about.jpg');"></div>
<div class="content">
<h1>关于我们</h1>
<p>这里是关于我们的内容。</p>
</div>
</main>
</body>
</html>