-
Notifications
You must be signed in to change notification settings - Fork 117
/
index.html
53 lines (52 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="favicon.png" rel="Shortcut Icon" type="image/x-icon"/>
<title>dmyang</title>
<style type="text/css">
body {
font: 14px/1.8 Tahoma;
}
a {
color: #15BDF1;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.wrapper {
width: 80%;
height: 100%;
margin: 0 auto;
}
section {
margin-top: 3em;
}
dt {
font-size: 2em;
}
dd {
line-height: 2em;
}
</style>
</head>
<body>
<div class="wrapper">
<section class="about">
<dl>
<dt>About me</dt>
<dd>github: <a href="https://github.com/chemdemo">https://github.com/chemdemo</a></dd>
<dd>twitter: <a href="http://weibo.com/chemdemo">http://weibo.com/chemdemo</a></dd>
</dl>
</section>
<section class="blogs">
<h3>Issues list</h3>
<p>
<a href="https://github.com/chemdemo/chemdemo.github.io/issues">https://github.com/chemdemo/chemdemo.github.io/issues</a>
</p>
</section>
</div>
</body>
</html>