Actividad - TAREA SESIÓN 01
Actividad - TAREA SESIÓN 01
Actividad - TAREA SESIÓN 01
Asignatura:
Ingeniería Web
Docente:
Edy García Javier Córdova
Integrantes:
Cabrera Palma, Carlos Daniel
Espinoza Guevara, Leo Daniel
Garcia Bereche, Levi Gabriel
Moran Garcia, Franco Renato
Lizana Chinguel, Johan Paul
ESCUELA ACADÉMICA PROFESIONAL DE
INGENIERÍA DE SISTEMAS
LABORATORIO N° 01
Escuela Profesional: Ingeniería de Sistemas. Asignatura: INGENIERÍA WEB
Sección: C1 Semestre Académico: 2023-I
TRABAJO DE LABORATORIO I
1. PROBLEMA 1
Confeccionar una tabla que muestre los nombres de periódicos y su página web que e
redireccione a ella, agrupados por países. En la primera columna debe estar los nombres de
países, en la siguiente columna los periódicos y en la tercera columna su link.
Por ejemplo:
CÓDIGO HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PROBLEMA 01</title>
</head>
<body>
<tr>
<th rowspan="3">Perú</th>
<td>El Popular</td>
</tr>
<tr>
<td>Perú 21</td>
</tr>
<tr>
<td>El Tiempo</td>
</tr>
<tr>
<th rowspan="3">Bolivia</th>
<td>El Diario</td>
</tr>
<tr>
<td>La Época</td>
</tr>
<tr>
<td>La Razón</td>
</tr>
<tr>
<th rowspan="3">Ecuador</th>
<td>El Comercio</td>
<td><a href="https://www.elcomercio.com"
target="_blank">www.elcomercio.com</a></td>
</tr>
ESCUELA ACADÉMICA PROFESIONAL DE
INGENIERÍA DE SISTEMAS
<tr>
<td>La Hora</td>
</tr>
<tr>
<td>La Prensa</td>
<td><a href="https://www.laprensa.com.ec"
target="_blank">www.laprensa.com.ec</a></td>
</tr>
<tr>
<th rowspan="3">Chile</th>
<td>El Mercurio</td>
</tr>
<tr>
<td>La Hora</td>
</tr>
<tr>
<td>La Tercera</td>
</tr>
<tr>
<th rowspan="3">Colombia</th>
<td>El Espectador</td>
<td><a href="https://www.elespectador.com"
target="_blank">www.elespectador.com</a></td>
</tr>
<tr>
ESCUELA ACADÉMICA PROFESIONAL DE
INGENIERÍA DE SISTEMAS
<td>Publimetro</td>
</tr>
<tr>
<td><a href="https://www.elnuevosiglo.com.co"
target="_blank">www.elnuevosiglo.com.co</a></td>
</tr>
</table>
</body>
</html>
CAPTURA DE LA TABLA:
ESCUELA ACADÉMICA PROFESIONAL DE
INGENIERÍA DE SISTEMAS
2. PROBLEMA 2
Una empresa que vende pollo a la brasa tiene 3 ofertas. Las mismas son (¼ de pollo y una
gaseosa 25 soles, un pollo entero más 2 porciones de papas fritas 55 soles y 1 pollo solo con
gaseosa 45 soles). Confeccionar una página que disponga tres hipervínculos a cada una de esas
ofertas. Al ser presionadas “solicitar” de la promoción elegida se abrirá el correo del cliente para
enviar un correo a la dirección ingresada por la página. En el título indicar si se trata de la
promoción 1, 2 o 3. AYUDA: Para que en el correo nos aparezca aparte de la dirección de correo
de destino, el asunto y texto en el contenido, se usaría lo siguiente:
Solicitar</a>
CÓDIGO HTML:
a. Archivo “PROBLEMA 02.html”:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PROBLEMA 02</title>
</head>
<body>
<h1>POLLERIA MI POLLITO</h1>
<h2>Promociones:</h2>
<ul>
</ul>
</body>
</html>
ESCUELA ACADÉMICA PROFESIONAL DE
INGENIERÍA DE SISTEMAS
b. Archivo “promo01.html”:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Promoción N°01</title>
</head>
<body>
</body>
</html>
c. Archivo “promo02.html”:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Promoción N°02</title>
</head>
<body>
</body>
</html>
ESCUELA ACADÉMICA PROFESIONAL DE
INGENIERÍA DE SISTEMAS
d. Archivo “promo03.html”:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Promoción N°03</title>
</head>
<body>
</body>
</html>