como hacer un cuadro de información en computación , con datos

alumnos notas1 nota 2
MARIA 15 13
JUAN 13 13
PEDRO 9 15
TANIA 14 10
ALFREDO20 9
MANUEL 12 8
ANA 8 12
CARLA 16 20
RODRIGO11 14

Respuestas

Respuesta dada por: william1991
0
<table>
<tboby>
<tr>
<th>Alumnos</th>
<th>Nota 1</th>
<th>Nota 2</th>
<tr>
<tr>
<td>nombre Alumno 1</td>
<td>Nota 1 alumno</td>
<td>Nota 2 alumno</td>
<tr>
<tr>
<td>nombre Alumno 2</td>
<td>Nota 1 alumno</td>
<td>Nota 2 alumno</td>
<tr>
.
.
.
</tboby>
</table>
Preguntas similares