-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseguimiento.html
69 lines (61 loc) · 1.9 KB
/
seguimiento.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Cake Is A Lie</title>
<link rel="stylesheet" href="estilo.css">
<link rel="icon" type="image/jpg" href="img/logo.jpg">
</head>
<body>
<header>
<section id="logo">
<img src="img/logo.jpg" alt="Logo" height="100">
</section>
<h1>The Cake Is a Lie</h1>
</header>
<nav>
<li><a href="index.html">Inicio</a></li>
<li><a href="pedido.html">Pedido</a></li>
<li><a href="seguimiento.html">Seguimiento</a></li>
<li><a href="contacto.html">Contacto</a></li>
</nav>
<!--Aquí termina el encabezado para todas las páginas-->
<h2> Lista de pedidos </h2>
<table border="1px">
<tr>
<th> Nombre cliente </th>
<th> Número celular </th>
<th> Correo electrónico </th>
<th> Sabor Pastel </th>
<th> Número de Personas </th>
<th> Adorno </th>
</tr>
<tr>
<td> Rosa Martínez</td>
<td>2394858473</td>
<td>[email protected]</td>
<td>fresa</td>
<td>10 personas</td>
<td>Spiderman</td>
</tr>
<tr>
<td> Jaime Locochón</td>
<td>66574828384</td>
<td>[email protected]</td>
<td>Fresa</td>
<td>15 personas</td>
<td>Gato Chillón</td>
</tr>
<tr>
<td> Enrique García</td>
<td>222837473</td>
<td>[email protected]</td>
<td>Chocolate</td>
<td>30 personas</td>
<td>Chems</td>
</tr>
</table>
</body>
</html>