-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
60 lines (53 loc) · 2.38 KB
/
home.html
File metadata and controls
60 lines (53 loc) · 2.38 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
<html>
<head>
<meta charset="UTF-8">
<title>Redox orgánica</title>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="css/common.css" rel="stylesheet">
<script src="js/jquery-3.1.0.min.js"></script>
<script src="js/globals.js"></script>
</head>
<body>
<div class="container">
<h1>Reacciones redox de <span class="special">compuestos orgánicos</span></h1>
<!-- Seccion paso por paso -->
<h2 class="center">Reacciones paso por paso:</h2>
<div class="center">
<select id="equations">
<option>C₄H₈O + H₂ → C₄H₉OH</option>
<option>C₄H₈ + Cl₂ → C₄H₈Cl₂</option>
<option>C₄H₈O + H₂O → C₄H₈O₂ + H₂</option>
<option>C₄H₈ + H₂ → C₄H₁₀</option>
<option>CH₄ + 2O₂ → CO₂ + 2H₂O</option>
</select>
</div>
<br>
<button onclick="moveToTutorial(0)" class="big_menu normal small_padding center">Iniciar</button>
<hr class="big_padding">
<!-- Seccion de quiz -->
<h2 class="center">Ejercicios:</h2>
<div class="center">
<select id="equations2">
<option>C₄H₈O + H₂O → C₄H₈O₂ + H₂</option>
<option>C₅H₁₀O + H₂ → C₅H₁₂O</option>
<option>C₆H₁₂ + H₂O → C₆H₁₄O</option>
<option>HC≡CH + H₂ → CH₂=CH₂ + H₂ → CH₃-CH₃</option>
<option>C₃H₈ + O₂ → CO₂ + H₂O</option>
<option>C₁₆H₃₄ + O₂ → CO₂ + H₂O</option>
</select>
</div>
<br>
<button onclick="moveToTutorial2(5)" class="big_menu normal small_padding center">Iniciar</button>
<hr class="big_padding">
<!-- Seccion de Fun facts -->
<h2 class="center">Aplicaciones y ejemplos:</h2>
<button onclick="moveToApplications()" class="big_menu normal small_padding center">Ver</button>
<hr class="big_padding">
<!-- Seccion de video -->
<h2 class="center">Tutorial:</h2>
<div class="center">
<iframe width="600" height="450" src="https://www.youtube.com/embed/CnLbQg9trdU" allowfullscreen></iframe>
</div>
</div>
</body>
</html>