Entradas

Tabla HTML

Imagen
  <!DOCTYPE html> <html> <head> <title> HORARIO </title> </head> <body> <table  border= "1"> <tr> <th> Horas </th> <th> Lunes </th> <th> Martes </th> <th> Miércoles </th> <th> Jueves </th> <th> Viernes </th> </tr> <tr> <th> 8:30-9:20 </th> <th> Lengua </th> <th> Historia </th> <th> TIC </th> <th> Inglés </th> <th> Geografía </th> </tr> <tr> <th> 9:20-10:15 </th> <th> Historia </th> <th> Lengua </th> <th> Geografía </th> <th> Historia </th> <th> Matemáticas </th> </tr> <tr> ...

Página web HTML 2

Imagen
<!DOCTYPE html> <html> <head> <title> ASIGNATURAS FAVORITAS </title> </head <body> <ol> <b> LISTA DE ASIGNATURAS FAVORITAS </b> <li> Inglés </li> <li> Economía </li> <li> Historia </li> <li> TIC </li> <li> Matemáticas aplicadas </li> </ol> </body> </html>