-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (36 loc) · 1.2 KB
/
index.php
File metadata and controls
40 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<!-- El encabezado obtiene entre otras cosas el formato de
caracteres que admite la página web, la hoja de estilos y el ícono
de la página web -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/estilo.css">
<link rel="icon" href="image/go.ico"/>
<title>Inicio</title>
</head>
<!-- Inicia la parte de contenido -->
<body>
<a name="index"></a>
<!-- Contiene la imágen de fondo -->
<div class="bg">
<!--- Carrusel -->
<?php include_once("layout/slide.php");?>
<!-- navabar -->
<?php include_once("layout/navbar.php");?>
<h1 class="text-center tituloPa2 text-warning">~Recetas~</h1>
<!-- Card -->
<?php include_once("cardsIniciales.php");?>
<br>
</div>
<!-- Codigo Footer -->
<?php include_once("layout/footer.php");?>
<!-- js -->
<script src="js/jquery-3.1.1.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/all.min.js"></script>
</body>
</html>