-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculos.html
More file actions
86 lines (78 loc) · 3.26 KB
/
calculos.html
File metadata and controls
86 lines (78 loc) · 3.26 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
<!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>Calculos</title>
<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=Open+Sans:wght@400;700&family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<header class="nav-bar">
<nav>
<div>
<img class="js-challenge" src="assets/img/js-challenge-logo.png" alt="">
<a href="index.html"><img class="guiarte" src="assets/img/im.svg" alt="" ></a>
</div>
</nav>
</header>
<main>
<!-- Main Section -->
<section class="main-section">
<header>
<h3>Ejercicios</h3>
<h1>JavaScript</h1>
</header>
<p><strong>Calculos Matematicos básicos con JS</strong></p>
</section>
<!-- Nav Works -->
<section class="nav-works nav-works--inside">
<div class="card">
<div class="card__item" onclick="location.href='./taller-1.html'">
<img src="assets/img/circle.png" alt="">
<div>
<header>
<h4>TALLER #1</h4>
<h2>Figuras Geometricas</h2>
</header>
<p>Calculo básicos para Cuadrados, Triangulos y Circulos.</p>
</div>
</div>
<div class="card__item" onclick="location.href='./taller-2.html'">
<img src="assets/img/price.png" alt="">
<div>
<header>
<h4>TALLER #2</h4>
<h2>Porcentajes y descuentos</h2>
</header>
<p>Calculo básicos para precios, descuentos y cupones de pago.</p>
</div>
</div>
<div class="card__item" onclick="location.href='./taller-3.html'">
<img src="assets/img/discount.png" alt="">
<div>
<header>
<h4>TALLER #3</h4>
<h2>Media, Moda y Mediana</h2>
</header>
<p>Calculos básicos y avanzados.</p>
</div>
</div>
<div class="card__item" onclick="location.href='./taller-4.html'">
<img src="assets/img/dollar.png" alt="">
<div>
<header>
<h4>TALLER #4</h4>
<h2>Analisis Salarial</h2>
</header>
<p>Calculo básicos para trabajar con Salarios (medianas y top 10%).</p>
</div>
</div>
</div>
</section>
</main>
</body>
</html>