forked from community/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharea.html
More file actions
32 lines (32 loc) · 1.15 KB
/
area.html
File metadata and controls
32 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../CSS/estilos.css">
<title>Área Triángulo</title>
</head>
<body>
<head>
<h1>ÁREA DE UN TRIÁNGULO</h1>
</head>
<main>
<section class="container">
<form action="../index.html">
<label for="">Base del triángulo</label>
<input type="number" value="" id="base" placeholder="Ingrese la base" >
<label for="">Altura del triángulo</label>
<input type="number" value="" id="alt" placeholder="Ingrese la altura">
<div class="botones">
<button type="button" class="boton" onclick="ope.Ejercicio12()">Resultado</button>
<button type="submit" class="boton">Regresar</button>
</div>
<div id="resp" class="ocultar">
Resultado del área
</div>
</form>
</section>
</main>
<script src="../js/main.js"></script>
</body>
</html>