Entradas

Programación C++: LC_CTYPE, "Spanish"

Imagen
 

PAGINA WEB

Imagen
 

HTML 5

  <!DOCTYPE HTML> <html> <head> <title> Real Madrid </title> <meta charset= "UTF-8"> <meta name= "description" content="descripcion original"> </head> <body> <h1> El Real Madrid es campeon de la Supercopa de España </h1>          <p> El Real Madrid logra su duodécima Supercopa de España </p> <p> En la semifinal del campeonato se enfrento al Barcelona FC ganadole por 3 goles a 2 y en la final se enfrento al Athletic Club de Bilbao ganandole por 2 goles a 0 </p> <img src= 1642368169660.jpg height= "400" widht= "500">       <b> 11 inicial </b>      <li> Courtois </li>      <li> Mendy </li>      <li> Alaba </li>      <li> Militao </li>      <li> Carvajal </li>  ...

HTML 4

 <!DOCTYPE HTML> <html> <head> <title> Real Madrid </title> <meta charset= "UTF-8"> <meta name= "description" content="descripcion original"> </head> <body> <h1> El Real Madrid es campeon de la Supercopa de España </h1>          <p> El Real Madrid logra su duodécima Supercopa de España </p> <p> En la semifinal del campeonato se enfrento al Barcelona FC ganadole por 3 goles a 2 y en la final se enfrento al Athletic Club de Bilbao ganandole por 2 goles a 0 </p> <img src= 1642368169660.jpg height= "400" widht= "500">       <b> 11 inicial </b>       <li> Courtois </li>       <li> Mendy </li>       <li> Alaba </li>       <li> Militao </li>       <li> Carvajal </li> ...

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> ...