-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiguras.html
More file actions
26 lines (25 loc) · 886 Bytes
/
figuras.html
File metadata and controls
26 lines (25 loc) · 886 Bytes
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
<!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</title>
</head>
<body>
<header>
<h1>Figuras Geométricas</h1>
<p>Calcula algunas medidas de Figuras Geométricas</p>
</header>
<section>
<h2>Calcula el area y perimetro de un cuadrado</h2>
<form action="">
<label for="InputCuadrado">Escribe cuanto mide cada lado de tu cuadrado:</label>
<input id="InputCuadrado"type="number">
<button type="button" onclick="calcularArea">Calcular area</button>
<button type="button" onclick="calcularPerimetro">Calcular perimetro</button>
</form>
</section>
<script src="./figuras.js" ></script>
</body>
</html>