Creando menús y tablas a la página web

Ejercicios realizados con la ficha de aplicación
Ejemplo planteado por el docente del área
Último ejercicio:

Códigos//Etiquetas empleadas en cada ejercicio:
1er Ejercicio: 

<table border="8" cellspacing="8">
<thead>
<th>Grado</th>
<th>Sección</th>
</thead>
<tbody>
<tr><td>5to°</td><td>E</td><td>33</td></tr>
<tr><td>5to°</td><td>G</td><td>35</td></tr>
<tr><td>5to°</td><td>H</td><td>34</td></tr>
</tbody>
</table>

2do Ejercicio: 
<!DOCTYPE html>
<head>
<title> EJERCICIO DE APLICACIÓN-02</title>
</head>
<header>
<title> DATOS PERSONALES</title>
</header>
<body>
<table border="8" cellspacing="8">
<thead>
<th>Código</th>
<th>Apellido Paterno</th>
<th>Apellido Materno</th>
<th>Nombres</th>
<th>DNI</th>
</thead>
<tbody>
<tr><td>01</td><td>Vivanco</td><td>Espinoza</td><td>Andrea</td><td>125421641</td>
<tr><td>02</td><td>Stark</td><td>Potts</td><td>JamesAnthony</td><td>125421641</td>
<tr><td>03</td><td>Rogers</td><td>Carter</td><td>John Steve</td><td>125421641</td>
<tr><td>04</td><td>White</td><td>Brice</td><td>Matt Walt</td><td>125421641</td>
<tr><td>05</td><td>Drapper</td><td>Rose</td><td>Donald John</td><td>125421641</td>
</tbody>
</table>
</body>
</html>
3er Ejercicio: 
<!DOCTYPE html>
<head>
<title>Último ejercicio</title>
</head>
<header>
<title>Enlaces de página</title>
</header>
<body>
<table border="8" cellspacing="8">
<button>Página principal</button>
<button>Relación estudiantil</button>
<button>Datos personales</button>
<button>Listado de productos</button>
<style type="text/css">
button{
color: skyblue;
background-color: orange;
width: 11.5%;
height: auto;
border: none;
cursor: pointer;
font-weight: bold;
}
</style>



No hay comentarios:

Publicar un comentario