-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemoji.html
39 lines (39 loc) · 1.67 KB
/
emoji.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Diseño y nuevos medios" />
<link href="style.css" rel="stylesheet" />
<title>🎓 DNO037</title>
</head>
<body style="background:#081F86; cursor: none;">
<header>
<h1>
<a href="index.html">Nombre Apellido</a>
<a href="cursos.html">CURSOS</a>
<a href="emoji.html" style="text-decoration: line-through">EMOJI</a>
<a href="swiftie.html">SWIFTIE</a>
</h1>
</header>
<main></main>
<footer>
<p><a href="https://github.com/profesorfaco/dno037-2023-2">Diseño y nuevos medios</a> <a href="https://github.com/profesorfaco/dno037-2023-2/tree/main/clase-03">23 de agosto, 2023</a></p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.min.js" integrity="sha512-bcfltY+lNLlNxz38yBBm/HLaUB1gTV6I0e+fahbF9pS6roIdzUytozWdnFV8ZnM6cSAG5EbmO0ag0a/fLZSG4Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
function setup() {
createCanvas(windowWidth, windowHeight).position(0, 0).style("z-index", "-1");
}
function draw() {
background('#081F86');
textSize(42);
textAlign(CENTER,CENTER);
text("EMOJI", mouseX, mouseY);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}
</script>
</body>
</html>