-
Notifications
You must be signed in to change notification settings - Fork 0
/
macho.php
45 lines (39 loc) · 1.18 KB
/
macho.php
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Programación para Internet</title>
<link rel="stylesheet" href="../css/bootstrap.min.css">
<link rel="stylesheet" href="css/estilo.css">
<link rel="stylesheet" href="../css/iconos.css">
</head>
<body>
<!-- Aqui va la cabecera -->
<div class="container-fluid cabecera" style="height:200px;">
<div class="container">
<h1 class="titulo-principal">Titulo</h1>
<p></p>
</div>
</div>
<!-- Barra superior de navegación -->
<?php include("menuSuperior.php"); ?>
<section class="main container">
<article class="tema">
<h2>Titulo</h2>
<p class="text-justify">
contenido
</p>
<p class="text-justify">
</p>
<p class="text-justify">
</p>
<p class="text-justify"></p>
<p class="text-justify"></p>
</article>
</section>
<!-- Scripts que se necesitan para el sitio -->
<script src="../js/jquery.js" charset="utf-8"></script>
<script src="../js/bootstrap.min.js"></script>
</body>
</html>