-
Notifications
You must be signed in to change notification settings - Fork 0
/
figuras.html
34 lines (33 loc) · 945 Bytes
/
figuras.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
<!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>Figuras geométricas | Curso Práctico de JavaScript en Platzi</title>
<script src="./figuras.js"></script>
</head>
<body>
<header>
<h1>
Figuras geométricas
</h1>
<p>Este es el primer taller del curso práctico de JavaScript</p>
</header>
<section>
<h2>Calcula el área y perímetro de un cuadrado</h2>
<form>
<label for="InputCuadrado">
Escribe cuánto mide cada lado de tu cuadrado:
</label>
<input id="InputCuadrado" type="number" />
<button type="button" onclick="perimetroCuadrado()">
Calcular el perímetro
</button>
<button type="button" onclick="areaCuadrado()">
Calcular el área
</button>
</form>
</section>
</body>
</html>