-
Notifications
You must be signed in to change notification settings - Fork 0
/
geoA.html
221 lines (164 loc) · 7.86 KB
/
geoA.html
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Geometria Analitica</title>
<!-- Librerías necesarias para JQM-->
<link rel="stylesheet" href="jquery.mobile-1.2.0.min.css" />
<script src="jquery-1.8.3.js"></script>
<script src="jquery.mobile-1.2.0.min.js"></script>
<!-- Fin librerías necesarias -->
</head>
<body>
<div data-role="page" id="home">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">CalcGebra</a>
<h1>Geometría Analítica</h1>
</div>
<h2 align="center">Temario</h2>
<ol data-role="listview" data-filter="true" data-filter-placeholder="Buscar tema...">
<!-- Primer parcial -->
<li data-role="list-divider">Primer Parcial</li>
<li><a href="#Distancia_de_dos_puntos" data-transition="slide">Distancia de dos puntos</a></li>
<li><a href="#Distancia_de_un_punto_a_una_recta" data-transition="slide">Distancia de un punto a una recta</a></li>
<li><a href="#Razon_entre_dos_puntos" data-transition="slide">Razón entre dos puntos</a></li>
<li><a href="#Pendiente" data-transition="slide">Pendiente</a></li>
<li><a href="#Angulo_entre_dos_rectas" data-transition="slide">Ángulo entre dos rectas</a></li>
<li><a href="#Area_de_poligonos" data-transition="slide">Área de poligonos</a></li>
<!-- Segundo parcial -->
<li data-role="list-divider">Segundo Parcial</li>
<li><a href="#La_Recta" data-transition="slide">La Recta</a></li>
<li><a href="#Circunferencia" data-transition="slide">Circunferencia</a></li>
<!-- Tercer parcial -->
<li data-role="list-divider" data-transition="slide">Tercer Parcial</li>
<li><a href="#Parabola" data-transition="slide">Párabola</a></li>
<li><a href="#Elipse" data-transition="slide">Elipse</a></li>
<li><a href="#Hiperbola" data-transition="slide">Hipérbola</a></li>
</ol>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div>
<!--///////////////////Distancia de dos puntos//////////////////////-->
<div data-role="page" id="Distancia_de_dos_puntos" data-title="Distancia de dos puntos">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Distancia de dos puntos</h1>
</div>
<h2 align="center">Distancia de dos puntos</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--///////////////////Distancia de un punto a una recta//////////////////-->
<div data-role="page" id="Distancia_de_un_punto_a_una_recta" data-title="Distancia de un punto a una recta">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Distancia de un punto a una recta</h1>
</div>
<h2 align="center">Distancia de un punto a una recta</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Razón entre dos puntos//////////////////-->
<div data-role="page" id="Razon_entre_dos_puntos" data-title="Razón entre dos puntos">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Razón entre dos puntos</h1>
</div>
<h2 align="center">Razón entre dos puntos</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Pendiente//////////////////-->
<div data-role="page" id="Pendiente" data-title="Pendiente">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Pendiente</h1>
</div>
<h2 align="center">Pendiente</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Ángulo entre dos rectas//////////////////-->
<div data-role="page" id="Angulo_entre_dos_rectas" data-title="Ángulo entre dos rectas">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Ángulo entre dos rectas</h1>
</div>
<h2 align="center">Ángulo entre dos rectas</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Área de poligonos//////////////////-->
<div data-role="page" id="Area_de_poligonos" data-title="Área de poligonos">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Área de poligonos</h1>
</div>
<h2 align="center">Área de poligonos</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////La Recta//////////////////-->
<div data-role="page" id="La_Recta" data-title="La Recta">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>La Recta</h1>
</div>
<h2 align="center">La Recta</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Circunferencia//////////////////-->
<div data-role="page" id="Circunferencia" data-title="Circunferencia">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Circunferencia</h1>
</div>
<h2 align="center">Circunferencia</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Párabola//////////////////-->
<div data-role="page" id="Parabola" data-title="Párabola">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Párabola</h1>
</div>
<h2 align="center">Párabola</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Elipse//////////////////-->
<div data-role="page" id="Elipse" data-title="Elipse">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Elipse</h1>
</div>
<h2 align="center">Elipse</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
<!--/////////////////////////////Hipérbola//////////////////-->
<div data-role="page" id="Hiperbola" data-title="Hipérbola">
<div data-role="header" data-position="fixed">
<a href="index.html" data-icon="arrow-l" data-rel="back">Regresar</a>
<h1>Hipérbola</h1>
</div>
<h2 align="center">Hipérbola</h2>
<div data-role="footer" data-position="fixed">
<h4>hugoduar (C)</h4>
</div>
</div><!-- Page -->
</body>
</html>