-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me.html
58 lines (52 loc) · 1.77 KB
/
about_me.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>赵新html主页</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link rel="stylesheet" type="text/css" href="css/mui.min.css" />
<style>
.chart {
height: 200px;
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a id="info" class="mui-icon mui-icon-refresh-filled mui-pull-right" style="color: #999;" href="about_me.html"></a>
<h1 class="mui-title">关于我</h1>
</header>
<div class="mui-content">
<p>工作经历:</p>
<center>
<img src="img/stdata.png" />
<p>公司名称:杭州数坦科技<br/>公司类型:移动互联网<br/>工作时间:2015 - 2017<br/>负责职位:项目经理、产品经理、iOS开发<br/></p>
</center>
<br/><br/><br/>
<nav class="mui-bar mui-bar-tab">
<a class="mui-tab-item" href="index.html">
<span class="mui-icon mui-icon-home"></span>
<span class="mui-tab-label">主页</span>
</a>
<a class="mui-tab-item" href="project.html">
<span class="mui-icon mui-icon-paperclip">
<span class="mui-badge">7</span>
</span>
<span class="mui-tab-label">项目信息</span>
</a>
<a class="mui-tab-item" href="contact.html">
<span class="mui-icon mui-icon-phone"></span>
<span class="mui-tab-label">联系我</span>
</a>
<a class="mui-tab-item mui-active" href="#">
<span class="mui-icon mui-icon-person-filled"></span>
<span class="mui-tab-label">关于我</span>
</a>
</nav>
<!--处理tabbar点击事件无反应的改写方法-->
<script src="js/mui.min.js"></script>
<script src="js/echarts-all.js"></script>
</body>
</html>