-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeng.html
More file actions
97 lines (94 loc) · 2.88 KB
/
peng.html
File metadata and controls
97 lines (94 loc) · 2.88 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Helen Peng - 个人网页</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e0f2f1;
color: #004d40;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #004d40;
color: #ffffff;
padding-top: 30px;
min-height: 70px;
border-bottom: #cccccc 3px solid;
}
header a {
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
float: right;
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
.content {
padding: 20px;
background: #ffffff;
margin: 20px 0;
}
.content h2 {
color: #004d40;
}
footer {
padding: 20px;
margin-top: 20px;
color: #ffffff;
background-color: #004d40;
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Helen Peng</h1>
</div>
<nav>
<ul>
<li><a href="#about">个人介绍</a></li>
<li><a href="#experience">工作经历</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<section id="about" class="content">
<h2>个人介绍</h2>
<p>我是 Helen Peng,深圳海誉国际物流的CEO。2009年,我毕业于中南林业科技大学,获得物流工程专业的学士学位。自2009年以来,我一直专注于物流行业。作为公司的创始人之一,我带领团队在行业中取得了显著的成就,使公司成为行业营收2000万的顶尖业务之一。</p>
</section>
<section id="experience" class="content">
<h2>工作经历</h2>
<h3>CEO - 深圳海誉国际物流</h3>
<p>在创立深圳海誉国际物流公司后,我带领团队在短短2年内从2人扩展到30人,3年内达到50人。通过我的领导,公司在行业中取得了显著的业绩,营收达到2000万元。</p>
</section>
</div>
<footer>
<p>联系信息: helen@honourocean.com | 电话: 8618813869025</p>
</footer>
</body>
</html>