-
Notifications
You must be signed in to change notification settings - Fork 0
/
spanish-pronouns.html
91 lines (90 loc) · 1.87 KB
/
spanish-pronouns.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
88
89
90
91
<meta charset="UTF-8">
<link rel="stylesheet" href="pronouns-tables.css">
<table class="pronouns-table">
<tbody>
<tr>
<th rowspan="3">Case</th>
<th colspan="6">Singular</th>
<th colspan="4">Plural</th>
</tr>
<tr>
<th rowspan="2">1st</th>
<th colspan="2">2nd</th>
<th colspan="3" rowspan="2">3rd</th>
<th rowspan="2">1st</th>
<th rowspan="2">2nd</th>
<th rowspan="2">3rd</th>
</tr>
<tr>
<th>Informal</th>
<th>Formal</th>
</tr>
<tr>
<td><b>Nominative</b></td>
<td>yo</td>
<td>tú</td>
<td>usted</td>
<td>él</td>
<td>ello</td>
<td>ella</td>
<td>nosotros/as</td>
<td>ustedes</td>
<td>ellos/ellas</td>
</tr>
<tr>
<td><b>Accusative</b></td>
<td rowspan="3">me</td>
<td rowspan="3">te</td>
<td>lo/la</td>
<td colspan="2">lo</td>
<td>la</td>
<td rowspan="3">nos</td>
<td colspan="2">los/las</td>
</tr>
<tr>
<td><b>Dative</b></td>
<td colspan="4">le</td>
<td colspan="2">les</td>
</tr>
<tr>
<td><b>Reflexive</b></td>
<td colspan="4">se</td>
<td colspan="2">se</td>
</tr>
<tr>
<td><b>Prepositional</b></td>
<td>mí</td>
<td>ti</td>
<td>usted</td>
<td>él</td>
<td>ello</td>
<td>ella</td>
<td>nosotros/as</td>
<td>ustedes</td>
<td>ellos/ellas</td>
</tr>
<tr class="thick-border">
<td><b>Possessive Adj</b></td>
<td>mi[s]</td>
<td>tu[s]</td>
<td colspan="4">su[s]</td>
<td rowspan="2">nuestro/a[s]</td>
<td colspan="2">su[s]</td>
</tr>
<tr>
<td><b>Possessive</b></td>
<td>mío/a[s]</td>
<td>tuyo/a[s]</td>
<td colspan="4">suyo/a[s]</td>
<td colspan="2">suyo/a[s]</td>
</tr>
<tr class="thick-border">
<td><b>Regular Verb Conjugation</b><br>-ar / -er / -ir</td>
<td>hablo<br>como<br>vivo</td>
<td>hablas<br>comes<br>vives</td>
<td colspan="4">habla<br>come<br>vive</td>
<td>hablamos<br>comemos<br>vivimos</td>
<td colspan="2">hablan<br>comen<br>viven</td>
</tr>
</tbody>
</table>