-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcv.html
71 lines (67 loc) · 1.97 KB
/
cv.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
<html>
<head>
<meta charset="UTF-8" />
<style>
.nome {
text-decoration: underline;
text-decoration-color: red;
}
.titulo {
color: red;
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
}
.texto {
color: black;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 30px;
}
.fundo-tela {
background-color: #60dd60;
text-align: center;
width: 400px;
}
.margem {
padding-left: 50px;
vertical-align: top;
}
</style>
</head>
<body>
<table border="1" width="100%" height="500px">
<tr>
<td class="fundo-tela">
<img src="img/foto.png" alt="Foto do Fernando" width="50%">
<p>
<span class="nome">
FERNANDO SALLES CLARO
</span><br/>
Professor & Web Developer</p>
</td>
<td colspan="2" class="margem">
<span class="titulo">
Objetivos
</span><br>
<span class="texto">
Atuar como analista de sistemas e desenvolvimento de software para desktop e/ou web.
</span>
</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>