-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutMe.html
110 lines (79 loc) · 3.61 KB
/
aboutMe.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
102
103
104
105
106
107
108
109
110
<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>About me</title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="blog.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="blog-header py-3">
<div class="row flex-nowrap justify-content-between align-items-center">
<div class="col-4 text-center">
<a class="blog-header-logo text-dark" href="index.html">QingYi Zhong</a>
</div>
<div class="nav-scroller py-1 mb-2">
<nav class="nav d-flex justify-content-between">
<a class="p-2 text-muted" href="./index.html">Blog</a>
<a class="p-2 text-muted" href="./gallery.html">My Paintings</a>
<a class="p-2 text-muted" href="#">About me</a>
</nav>
</div>
</div>
</header>
</div>
<main role="main" class="container" style="margin-top:20px;">
<div class="row">
<aside class="col-md-4 blog-sidebar">
<div class="p-3 mb-3 bg-light rounded">
<img src="./imgs/myHead1.jpg" style="width:100%;" alt="avanta"/>
</div>
<div class="p-3">
<h4 class="font-italic">Elsewhere</h4>
<ol class="list-unstyled">
<li><a href="#">Twitter</a></li>
<li><a href="#">Facebook</a></li>
</ol>
<div>
wechart<br/>
<img src="./imgs/wechart.png"/>
</div>
</div>
</aside><!-- /.blog-sidebar -->
<div class="col-md-8 blog-main">
<div class="blog-post">
<h2 class="blog-post-title ">About me</h2>
<p>
As a patient and meticulous person, I enjoy culturing plants and painting pictures quietly by myself. The roses and succulent plants thrive under my attentive caring. Other fields such as playing the piano, handicrafts like seal carving、 paper cutting, and baking are also my indulgence.
</p>
<hr>
<p class="lead my-3">
我有耐心,做事细致,喜欢一个人安静地养花,画画。月季,多肉,我都养的很好。弹钢琴,做手工,篆刻、剪纸、烘焙,我也有涉猎。
</p>
</div>
</div>
</div>
</main>
<footer class="blog-footer">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
<p> © Copy right 2018.</p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./js/jquery-slim.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/holder.min.js"></script>
</body>
</html>