-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 993 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 993 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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>IMC Calculadora</title>
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<div id="content">
<!--animation by Shinsuke Matsumoto in Walking Guys on Nov 24, 2014 | https://dribbble.com/shots/1820812-Fat-Boy-Walking-gifhttps://dribbble.com/shots/1697984-Going-for-a-Spin-->
<div id="run"></div>
<h2 id="title">Calcule su IMC</h2>
<input id="peso" type="text" placeholder="peso (##.#)" /><br />
<input id="altura" type="text" placeholder="altura (#.##)" /><br />
<input type="button" value="CALCULAR" onclick="calc()" /><br />
<div id="message"></div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>