forked from anchnk/gmail-signature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (71 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Gmail Signature</title>
<link href="https://fonts.googleapis.com/css?family=Hind" rel="stylesheet"
type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet"
type='text/css'>
<style>
*html, body { font-family: 'Hind', serif; }
img {
border: 0;
}
table {
border-collapse: separate;
border-spacing: 0;
width: 310;
}
td {
padding: 0;
}
#social-icons {
margin-top: 6px;
}
.rightPad {
padding-right: 5px;
}
</style>
</head>
<body>
<table>
<tr>
<td class="rightPad">
<img src="img/avatar.png" width="100" />
</td>
<td>
<p>
<h3>Rodrigo Castro</h3>
Bacharel em Tecnologia da Informação - UFRN<br />
<font color='blue'>Mobile:</font> +55 84 9 9818-4097<br />
<font color='blue'>Email:</font> [email protected]
</p>
</td>
</tr>
<tr>
<td>
<table id="social-icons">
<tr>
<td class="rightPad">
<a href="https://github.com/rodrigondec/" target="_blank">
<img src="img/social/gh.png" alt="https://github.com/rodrigondec"/>
</a>
</td>
<td class="rightPad">
<a href="https://www.linkedin.com/in/rodrigondec" target="_blank">
<img src="img/social/in.png" alt="https://www.linkedin.com/in/rodrigondec" />
</a>
</td>
<td class="rightPad">
<a href="https://twitter.com/rodrigondec" target="_blank">
<img src="img/social/tw.png" alt="https://twitter.com/rodrigondec"/>
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>