-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (70 loc) · 1.92 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
<!DOCTYPE html>
<title>Web design and development. Dmitry Belitsky.</title>
<style type="text/css" media="screen">
* {
margin: 0;
padding: 0;
}
body {background: url(bg.jpg) no-repeat left top;
background-color: white;
color: #333;
font-family: Helvetica, "Lucida Grande", Arial, "MS Trebuchet", sans-serif;
font-size: 16px;
line-height: 160%;
padding: 62px 38px;
}
a {
color: black;
text-decoration: none;
padding: 1px;
border-bottom: 1px dotted #333;
}
a:hover {
border-bottom: 1px solid;
background-color: #eaeaea;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
padding: 0 10px 0 18px;
margin-left: 10px;
float: left;
}
li.homePage {padding-left: 0; margin: 0 0 10px 0;}
li.github { clear: left; margin: 0; padding-left: 0;}
li.flickr {
background: url(icons/flickr.png) no-repeat left 50%;
}
li.twitter {
background: url(icons/twitter.png) no-repeat left 50%;
}
li.delicious {
background: url(icons/delicious.png) no-repeat left 50%;
}
li.mail {
background: url(icons/email.png) no-repeat left 50%;
clear: left;
margin: 10px 0 0 0;
}
h1 {
margin: 0 0 5px 0;
}
p.about {
font-size: 12px;
margin: 0 0 20px 0;
}
</style>
<body>
<h1>Dima Belitsky</h1>
<p class="about">Web design, development, photography.</p>
<ul class="links">
<li class="homePage"><a href="http://belitsky.info">belitsky.info</a></li>
<li class="github"><a href="http://github.com/dab">github</a></li>
<li class="flickr"><a href="http://flickr.com/photos/daim/show">flickr</a></li>
<li class="twitter"><a href="http://twitter.com/dabelitsky">twitter</a></li>
<li class="mail"><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</body>