-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurante.html
More file actions
44 lines (43 loc) · 1.89 KB
/
Copy pathrestaurante.html
File metadata and controls
44 lines (43 loc) · 1.89 KB
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
<!doctype html>
<html lang="en">
<head>
<title>RESTAURANTE</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/estilo.css">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js" integrity="sha384-fbbOQedDUMZZ5KreZpsbe1LCZPVmfTnH7ois6mU1QK+m14rQ1l2bGBq41eYeM/fS" crossorigin="anonymous"></script>
</head>
<body>
<header class="encabezado">
<div class="contenedor-navegacion">
<div class="contenido-navegacion contenedor">
<div class="logo">
<img src="img/imagen.jpg" alt="Logo" width="80" height="80" class="d-inline-block align-text-top">>
</div>
<nav class="navegacion ocultar">
<a class="active" href="restaurante.html">Inicio</a>
<a href="ENTRADAS.HTML">ENTRADAS</a>
<a href="PRINCIPAL.HTML">PLATO PRINCIPAL</a>
<a href="BEBIDAS.HTML">BEBIDAS</a>
<a href="POSTRES.HTML">POSTRES</a>
<a href="COMBO.HTML">COMBO</a>
</nav>
<div class="hamburguesa">
<span></span><span></span><span></span>
</div>
</div>
</div>
<div class="contenido-header">
<div class="contenedor-encabezado">
<div class="texto-encabezado">
<h1 class="subtitle">Welcome To Our Restaurant</h1>
<h1 class="title">Really Fresh & Tasty</h1>
</div>
</div>
</div>
</header>
<script src="js/app.js"></script>
</body>
</html>