-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurriculo.html
87 lines (82 loc) · 1.92 KB
/
curriculo.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
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<header>
</header>
<picture>
<img src="https://via.placeholder.com/200" width="200" height="200" alt="quadrado cinza com o numero da 'altura' e 'comprimento'">
<figcaption>Carlos Henrique</figcaption>
</picture>
<main>
</main>
<section>
</section>
<aside>
</aside>
<aside>
<table>
<caption><h4>Horarios de estudo</h4></caption>
<tbody>
<tr>
<td>Manhã</td>
<td rowspan="2">HTML</td>
<td rowspan="2">CSS </td>
<td>HTML</td>
<td>CSS</td>
<td rowspan="2">JavaScript</td>
</tr>
<tr>
<td>Tarde</td>
<td colspan="2">JavaScript</td>
</tr>
</tbody>
<thead>
<th>
Dias da Semana
</th>
<th>
Seg
</th>
<th>
Ter
</th>
<th>
Qua
</th>
<th>
Qui
</th>
<th>
Sex
</th>
</thead>
<tfoot>
<th>
Dias da Semana
</th>
<th>
Seg
</th>
<th>
Ter
</th>
<th>
Qua
</th>
<th>
Qui
</th>
<th>
Sex
</th>
</tfoot>
</table>
</aside>
<footer>
</footer>
</body>
</html>