-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 826 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<!--
Modelo de Cook-Torrance
David Genaro Lechuga Bernal
https://github.com/dlechuga/cook-torrance
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link href="images/ciencias.png" rel="shortcut icon" type="image/png">
<link href="styles/style.css" rel="stylesheet">
<title>Modelo de Cook-Torrance</title>
</head>
<body>
<canvas id="c"></canvas>
<div class="roundbox">
<h1 id="title" >Modelo de Cook-Torrance - <a href="https://dlechuga.github.io/cook-torrance/">GitHub</a></h1>
</div>
</body>
<!-- Biblioteca para el manejo de colores https://github.com/gka/chroma.js -->
<script src="scripts/chroma.min.js"></script>
<script src="scripts/script.js" type="module"></script>
</html>