-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
138 lines (113 loc) · 3.13 KB
/
Index.html
File metadata and controls
138 lines (113 loc) · 3.13 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="UTF-8">
<meta name="description" content="Sitio web estático sobre la enseñanza de la programación">
<meta name="keywords" content="sitio educativo, html5, programación, UNAN ">
<title>PractixCode</title>
<style type="text/css">
#encabezado{
border-style: solid;
margin-bottom: 1%;
height: 320px;
width: 100%;
}
li{
margin-left: 5%;
font-style: bold 1.2em Arial;
display: inline;
}
ul{
text-align: center;
}
aside{
float: left;
border-style: solid;
margin-top: 1%;
height: 310px;
}
section {
margin-left: 11%;
height: 310px;
}
figure{
float: left;
}
figure img{
margin-left: 1%;
}
footer{
clear: both;
}
footer{
font: normal 1.1em Georgia, "Times New Roman", Arial;
color: black
margin-bottom: 10px;
}
section{
margin-top: 1%;
margin-left: 12.8%;
border-style: solid;
}
form{
margin-top: 10%;
}
</style>
</head>
<body>
<header id="encabezado">
<!--<center>
<hgroup>
<h1>PractixCode</h1>
<h2>Sitio web sobre la enseñanza de la programación</h2>
<h3>(Banner)</h3>
</hgroup>
</center>-->
<figure>
<img src="Imagenes/Banner.png" height="300" width="1280">
</figure>
</header>
<nav style= "border-style: solid;">
<ul>
<li>Inicio</li>
<li>Ayuda</li>
<li>Referencias</li>
</ul>
</nav>
<aside>
<blockquote>Inicio</blockquote>
<blockquote>Asginaturas</blockquote>
<blockquote>Prácticas</blockquote>
<blockquote>Ayuda</blockquote>
<blockquote>Referencias</blockquote>
</aside>
<section>
<hr/>
<figure>
<img src="Imagenes/programacion.jpg" height="194" width="259">
<figcaption>FUNDAMENTOS DE PROGRMACIÓN</figcaption>
<form>
<center><input type="button" value="Cursos"></center>
</form>
</figure>
<figure>
<img src="Imagenes/fundamentos de sistemas.jpg" height="194" width="259">
<figcaption>FUNDAMENTOS DE SISTEMAS DE INFORMACIÓN</figcaption>
<form>
<center><input type="button" value="Practicas"></center>
</form>
</figure>
<figure>
<img src="Imagenes/programacion I.jpg" height="194" width="259">
<figcaption>FUNDAMENTOS PROGRAMACIÓN I</figcaption>
<form>
<center><input type="button" value="Historial/Resultados"></center>
</form>
</figure>
</section>
<footer>
<hr/>
<p><i>Información institucional de la página</i></p>
</footer>
</body>
</html>