-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (43 loc) · 2.43 KB
/
index.html
File metadata and controls
51 lines (43 loc) · 2.43 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
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>WebGPU Arts - Generative Art with WebGPU</title>
<link href="https://cdn.tiye.me/logo/webgpu-art.png" rel="icon" type="image/png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<meta name="description" content="Explore generative art created with WebGPU. A collection of creative coding projects showcasing the power of modern web graphics.">
<meta name="keywords" content="WebGPU, Generative Art, Creative Coding, TypeScript, WGSL, Graphics, Art, Web Graphics, GPU, Rendering, Shaders">
<meta name="author" content="WebGPU-Art Community">
<link rel="canonical" href="https://webgpu.art/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://webgpu.art/">
<meta property="og:title" content="WebGPU Arts - Generative Art with WebGPU">
<meta property="og:description" content="Explore generative art created with WebGPU. A collection of creative coding projects showcasing the power of modern web graphics.">
<meta property="og:image" content="https://webgpu.art/logo.png">
<meta property="og:site_name" content="WebGPU Arts">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://webgpu.art/">
<meta name="twitter:title" content="WebGPU Arts - Generative Art with WebGPU">
<meta name="twitter:description" content="Explore generative art created with WebGPU. A collection of creative coding projects showcasing the power of modern web graphics.">
<meta name="twitter:image" content="https://webgpu.art/logo.png">
<meta name="twitter:site" content="@WebGPUArt">
<meta name="twitter:creator" content="@tiye">
<meta name="twitter:image:alt" content="WebGPU Arts Logo">
<link rel="stylesheet" type="text/css" href="https://cdn.tiye.me/favored-fonts/main-fonts.css">
<link rel="stylesheet" type="text/css" href="./assets/main.css">
</head>
<body>
<div class="app" ></div>
<script type="module" src="./main.mjs" ></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CM7L8G9LCK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CM7L8G9LCK');
</script>
<noscript>this page requires WebGPU to run.</noscript>
</body>
</html>