-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (59 loc) · 2.18 KB
/
index.html
File metadata and controls
61 lines (59 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Inicio | Talleres</title>
<meta property="og:title" content="Taller matemático | Rabi León" />
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://rabileon.github.io/practico-javascript/"
/>
<meta property="og:image" content="assets/images/preview.png" />
<meta
property="og:description"
content="Talleres de cálculos matemáticos
realizados en JavaScript"
/>
<link rel="icon" type="image/png" href="assets/images/rl.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap"
rel="stylesheet"
/>
<link href="./assets/css/index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav class="index-nav">
<img src="./assets/images/log_rl.png" alt="Logo rabi leon" height="60" />
</nav>
<div class="container">
<section class="taller" onclick="location.href='./figuras.html'">
<h2>Taller #1</h2>
<h3>Figuras Geometricas</h3>
<p>Calculo básicos para Cuadrados, Triángulos y Círculos</p>
</section>
<section class="taller" onclick="location.href='./descuentos.html'">
<h2>Taller #2</h2>
<h3>Precios y descuentos</h3>
<p>Calculo básicos para precios, descuentos y cupones de pago</p>
</section>
<section class="taller" onclick="location.href='./taller3.html'">
<h2>Taller #3</h2>
<h3>Promedios, Moda y Mediana</h3>
<p>Calculo básicos y avanzados</p>
</section>
<section class="taller" onclick="location.href='./taller4.html'">
<h2>Taller #4</h2>
<h3>Análisis Salarial</h3>
<p>Calculo básicos para calcular medianas y Top 10%</p>
</section>
</div>
<footer>
<p>Rabi León - Developer</p>
</footer>
</body>
</html>