-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.54 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
<!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">
<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=DM+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./index.css">
<title>Home | Cursos</title>
</head>
<body>
<main>
<div class="titulo">
<h1>Menu</h1>
<p>Calculadoras de Analisis</p>
</div>
<div class="main-tab">
<div class="tab-first">
<button onclick="location.href='./Taller-1/figura.html'" class="boton">Calcular Figuras <p class="sub-titulo">Areas y Perimetros</p></button>
<button onclick="location.href='./Taller-2/descuentos.html'" class="boton">Calcular Descuentos <p class="sub-titulo">Precio Final</p> </button>
</div>
<div class="tab-second">
<button onclick="location.href='./Taller-3/promedio.html'" class="boton">Estadistica <p class="sub-titulo">Promedio, Mediana, Moda</p></button>
<button onclick="location.href='./Taller-4/salarios.html'" class="boton">Analisis <p class="sub-titulo">Salario General, Top 10%</p></button>
</div>
</div>
</main>
<div class="footer">
<p>Made by Juan camilo</p>
<p>Just Mobile display</p>
</div>
</body>
</html>