-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 2.01 KB
/
index.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>航晟科技</title>
<style>
body {
background-color: #1a1a1a;
color: #ffffff;
font-family: 'Arial', sans-serif;
}
header, nav, footer {
background-color: #333;
padding: 10px 20px;
text-align: center;
}
nav a {
color: #ff69b4;
text-decoration: none;
margin: 0 15px;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1, h2, h3 {
color: #ff69b4;
}
.product {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.product-item {
background-color: #444;
border: 1px solid #555;
margin: 10px;
padding: 15px;
width: 300px;
border-radius: 10px;
text-align: center;
}
.product-item img {
max-width: 100%;
border-radius: 10px;
}
footer {
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>航晟科技</h1>
<nav>
<a href="index.html">主页</a>
<a href="products.html">产品展示</a>
<a href="about.html">关于我们</a>
<a href="contact.html">联系我们</a>
</nav>
</header>
<div class="container">
<h2>欢迎来到航晟科技</h2>
<p>我们专注于高质量键盘和鼠标的设计与生产,为用户提供最佳的使用体验。</p>
</div>
<footer>
<p>© 2024 航晟科技. 保留所有权利.</p>
</footer>
</body>
</html>