-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (107 loc) · 4.06 KB
/
index.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
<!-- #002856ff,#7A8AA7ff,#A0AF84ff,#FF6666ff, #AA4242ff -->
<!DOCTYPE html>
<html lang="es">
<head>
<!-- <meta http-equiv="content-type" content="text/html; charset=utf-8" /> -->
<!-- <meta name="viewport" content="user-scalable=no" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Centro de masa</title>
<!-- <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -->
<!-- <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> -->
<!-- <script src="\node_modules\chartjs-plugin-annotation\dist\chartjs-plugin-annotation.min.js"></script> -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<script src="https://vectorgraphics.github.io/asymptote/base/webgl/asygl-1.02.js"></script>
<script src="main.js"></script>
</head>
<body onload="webGLStart();">
<nav
class="navbar navbar-expand-lg navbar-light"
style="background-color: #e4e8ed"
>
<div class="container">
<a class="navbar-brand" href="#">
<img
src="https://tecdigital.tec.ac.cr/repositorio/tecdigital/TD/img/tec-logo.png"
alt="tecDigital-logo"
width="150"
/>
</a>
</div>
</nav>
<div class="container">
<div class="row">
<div
class="col-md-2 col-sm-2 col-lg-2"
style="text-align: center; padding: 20px"
aria-hidden="true"
>
<img
src="https://tecdigital.tec.ac.cr/repositorio/tecdigital/ESC_AE/img/instrucciones_ae_gestores_curso.png"
width="75"
alt="instrucciones"
/>
</div>
<div class="col-md-10 col-sm-10 col-lg-10">
<div>
En una molécula de amonio (NH₄⁺), el átomo de nitrógeno (N) está en
el centro y los cuatro átomos de hidrógeno (H) están dispuestos en
los vértices de un tetraedro alrededor del átomo de nitrógeno.
</div>
<canvas id="Asymptote" style="border: none; cursor: pointer;">
</canvas>
<div>
Con base en este modelo, podemos afirmar que el centro de masa de la
molécula de amonio se ubica
<ol type="a">
<li>en la posición del nitrógeno</li>
<li>encima del átomo de nitrógeno</li>
<li>debajo del átomo de nitrógeno</li>
<li>en el vértice superior del tetraedro</li>
</ol>
</div>
</div>
</div>
</div>
<footer class="site-footer">
<div class="container text-center">
<div class="row align-items-center">
<div class="col col-sm-12 col-lg-6 col-md-6">
<p>
<a
title="escribir a [email protected]"
href="mailto: [email protected]"
target="_blank"
rel="noopener"
><span class="material-icons" aria-hidden="true">mail</span
>
</p>
</div>
<div class="col col-sm-12 col-lg-6 col-md-6">
<p>
<a
title="ir al repositorio"
href="https://github.com/glacy/cm"
target="_blank"
rel="noopener"
><span class="material-icons" aria-hidden="true">code</span
>Código fuente</a
>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>