-
Notifications
You must be signed in to change notification settings - Fork 0
/
geren.html
101 lines (78 loc) · 3.19 KB
/
geren.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<style>
.jumbotron p,h2 {
text-align: left;
}
.jumbotron img {
float:right;
}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Justified Nav Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/justified-nav.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- The justified navigation menu is meant for single line per list item.
Multiple lines will require custom code not provided by Bootstrap. -->
<div class="masthead">
<h3 class="text-muted">Yingxincui</h3>
<nav>
<ul class="nav nav-justified">
<li><a href="nav.html" data-toggle='tooltip' title='这是贺敏杰的个人主页'>主页</a></li>
<li><a href="shuping.html">书评</a></li>
<li><a href="riji.html">日记</a></li>
<li><a href="jiaoxun.html">教训</a></li>
<li class="active"><a href="geren.html">个人简介</a></li>
<li><a href="contact.html">联系</a></li>
</ul>
</nav>
</div>
<div class='jumbotron'>
<h1>个人简介</h1>
<p>本人2017年毕业于北京理工大学,硕士学历,学习化学工程与技术专业。从事燃料电池相关研究。
</p>
<h2>自学经历</h2>
<p>由于对网络感兴趣,自学html,javascript相关知识两月有余。对爬虫也略有研究,爬过网易图片。写过英语语法分析程序,用matplotlib做过科研图像</p>
<h2>社会实践</h2>
<img src='./images/yinxiang.jpg' height=300px;>
<p>印象大使</p>
<br>
<h2>资格证书</h2>
<p ><br>
CET-4<br>
CET-6<br>
计算机二级</p>
<h2>科研经历</h2>
<br>
<p>2016.5 参加德中华人新能源,新材料论坛 <br>2016.7 参加中英青年学者城市交通可持续能源先进技术 研讨会</p>
<h2>校园活动</h2>
<p>参加‘千辩万话’第七届北京理工大学研究生辩论赛<br>
组织并参加“幸运嘉年华’舞会<br>
组织‘浓墨重彩,魅力校园’书法大赛</p>
<img src='./images/dushu.png' width=300px>
<h2>兴趣爱好</h2>
<p>读书与编程,我的爱好</p>
</div>
<footer class='footer' style='clear:both'>
<p>© Yingxincui 2017,lnc<span> <a href='https://github.com/yingxincui'>Github</a></span>
<span> <a href='http://www.jianshu.com/u/45bde7b8cccb'>简书</a></span>
</p>
</footer>
</div> <!-- /container -->
<script>
$(function () { $("[data-toggle='tooltip']").tooltip(); });
</script>
</body>
</html>