-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
anestan.html
51 lines (41 loc) · 982 Bytes
/
anestan.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
<html>
<head>
<title>Hello, world.</title>
<style>
body {
background: #2b303b;
color: #acb0ba;
font-family: "Helvetica Neue",sans-serif;
font-size: 15px;
height: 20%;
margin: 0 auto;
padding: 10% 0;
text-align: center;
width: 35%;
}
a {
text-decoration: none;
border-bottom: 1px dotted #555;
color: #CD636B;
}
a:hover {
border-bottom: 1px dotted #AFC688;
color: #AFC688;
}
h1 {
font-size: 26px;
font-weight: 100;
}
img {
display: inline-block;
max-width: 300px;
}
</style>
</head>
<body>
<h1>Hi, I am <a href="https://github.com/anestan">anestan</a></h1>
<p>Thank you <a href="https://twitter.com/muanchiou">@muanchiou</a> for this, so I can learn pull request.</p>
<p>I am very beginner 😝😝😝</p>
<img src="http://i.imgur.com/Jvh1OQm.jpg" alt="cat">
</body>
</html>