glcanvas/index.html

28 lines
559 B
HTML
Raw Normal View History

2024-08-05 23:29:12 -04:00
<!doctype html>
<html lang="en">
2024-09-17 21:45:26 -04:00
<head>
<link rel="stylesheet" href="/style.css" />
2024-08-05 23:29:12 -04:00
2024-09-17 21:45:26 -04:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2024-08-05 23:29:12 -04:00
2024-09-17 21:45:26 -04:00
<meta name="darkreader-lock" />
<meta name="color-scheme" content="only light" />
2024-08-05 23:29:12 -04:00
2024-09-17 21:45:26 -04:00
<title>gl canvas test</title>
2024-08-05 23:29:12 -04:00
2024-09-17 21:45:26 -04:00
<script src="/js/webgl.js"></script>
<script src="/js/glmatrix.js"></script>
<script src="/js/main.js" type="module" defer></script>
2024-08-05 23:29:12 -04:00
2024-09-17 21:45:26 -04:00
<script>
0;
</script>
</head>
<body>
<canvas></canvas>
</body>
</html>