-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculatore.html
More file actions
33 lines (22 loc) · 791 Bytes
/
calculatore.html
File metadata and controls
33 lines (22 loc) · 791 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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body style = "text-align:center">
<h1></h1><br>
<form action = "">
<h2>Give me your box height<h2><br>
<input type = 'text' id ="input-height">
<h2>Give your box width<h2><br>
<input type = "text" id = "input-width">
<input type = "button" id = "botton-calculate" onClick = "boxSizing()" value="CALCULATE">
<h2>Your box size it's <span id ="span-result"></span><h2><br>
</form>
<button id = "boton-suma">Sumar</button>
<p>El resultado de tu suma es <span id = "span-resultado"> </span></p>
</body>
<script src="Cap1.js"></script>
</html>