-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInicio.html
More file actions
42 lines (30 loc) · 951 Bytes
/
Inicio.html
File metadata and controls
42 lines (30 loc) · 951 Bytes
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
<!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>Pastelería 1m y algo</title>
</head>
<body>
<a href="./inventario pastelero.html">
<img src="./1 metro.png" width="200px">
</a>
<h1>Bienvidos a la pastelería</h1>
<br>
<h2>Aquí puede conocer nuestros pasteles</h2>
<a href="./menu.html">
<input type="button" id="menu" name="menu", value="menu">
</a>
<hr>
<h2>Si gusta toppings los puede ver aquí</h2>
<a href="./toppings.html">
<input type="button" id="toppings" name="toppings" value="toppings">
</a>
<hr>
<p>Cuendo se encuentre listo para hacer su pedido puede ir a "realizar pedido"</p>
<a href="./pedido.html">
<input type="button" id="pedido" name="pedido" value="pedido">
</a>
</body>
</html>