-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
47 lines (37 loc) · 1.41 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="ECMA module files (.mjs) + library p5*js" name="description">
<meta content="esm,mjs,p5js" name="keywords">
<meta content="YourFacebookUsername" property="fb:admins">
<link href="img/p5-sq-reverse32.png" rel="icon">
<link href="styles/styles.css" rel="stylesheet">
<title>Calculator del Dr. Einstein</title>
<script async src="src/scriptindex.js"></script>
<script defer src="//cdn.JsDelivr.net/npm/p5"></script>
<script type="module" src="src/sketch.mjs"></script>
</head>
<body>
<header><nav><ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Go Back</a></li>
<li><a href="#">Go forward</a></li>
<li><a href="#">Calculadora</a></li>
<li><a href="#">Info</a></li>
<li><a href="#">About</a></li>
</ul></nav></header>
<main>
<label for="pantallaResultat"></label>
<input disabled id="pantallaResultat" placeholder="0" type="text"
label="pantalla"/>
<br>
<button id="boton1" onclick="tractarUn()">1</button>
<button id="boton2" onclick="tractarDos()">2</button>
<button id="boton3" onclick="tractarTres()">3</button>
</main>
<div id="sketch-holder"></div>
</body>
</html>