-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 2.27 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Denny Deng</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Denny Deng, Denny">
<meta name="description" content="Denny's personal site.">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
body {
font-family: Helvetica, Arial, sans-serif;
color: #999;
}
#container {
width: 320px;
height: 280px;
margin: 0 auto;
text-align: center;
position: relative;
margin-top: -160px;
top: 50%;
}
.avatar {
width: 100px;
height: 100px;
border-radius: 50%;
}
h1 {
color: #333;
font-size: 32px;
font-weight: bold;
letter-spacing: 4px;
text-transform: capitalize;
}
h2 {
font-size: 15px;
font-weight: normal;
letter-spacing: .1em;
margin-bottom: 20px;
}
p {
margin: 0;
font-size: 14px;
line-height: 2em;
letter-spacing: 2px;
}
a {
color: #999;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="container">
<img class="avatar" src="./favicon.ico" />
<h1>Hi, I'm Denny.</h1>
<h2 class="tag">Code & Sport</h2>
<p class="trace">
<a href="http://www.dennydeng.com/blog" target="_blank">Blog</a> /
<a href="https://github.com/idennydeng" target="_blank">GitHub</a> /
<a href="https://twitter.com/idennydeng" target="_blank">Twitte</a>
</p>
<p class="about">
<a href="https://about.me/idennydeng" target="_blank">About</a> |
<a href="mailto:[email protected]">Contact</a>
</p>
</div>
</body>
</html>