|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + |
| 7 | + <!-- ── Primary SEO ── --> |
| 8 | + <title>Graphical Playground — Build Graphics Engines from Scratch | Creative Coding & Canvas Experiments</title> |
| 9 | + <meta name="description" content="Graphical Playground is an interactive, browser-based platform where students deconstruct and rebuild graphics-engine systems from the ground up — from raw Vulkan commands to full render pipelines. Explore creative coding, canvas experiments, and real-time graphics programming."> |
| 10 | + <meta name="keywords" content="graphics programming, creative coding, canvas experiments, Vulkan, render pipeline, game engine architecture, real-time rendering, WebGPU, GPU programming, deconstructionist pedagogy"> |
| 11 | + <meta name="author" content="Graphical Playground"> |
| 12 | + |
| 13 | + <!-- ── Canonical ── --> |
| 14 | + <link rel="canonical" href="https://graphical-playground.com/"> |
| 15 | + |
| 16 | + <!-- ── Open Graph (Facebook / LinkedIn / Discord) ── --> |
| 17 | + <meta property="og:type" content="website"> |
| 18 | + <meta property="og:site_name" content="Graphical Playground"> |
| 19 | + <meta property="og:title" content="Graphical Playground — Build Graphics Engines from Scratch"> |
| 20 | + <meta property="og:description" content="An interactive platform where students deconstruct and rebuild graphics-engine systems — from raw Vulkan commands to full render pipelines. Creative coding & canvas experiments."> |
| 21 | + <meta property="og:url" content="https://graphical-playground.com/"> |
| 22 | + <meta property="og:image" content="https://graphical-playground.com/assets/preview-image.png"> |
| 23 | + <meta property="og:image:width" content="1200"> |
| 24 | + <meta property="og:image:height" content="630"> |
| 25 | + <meta property="og:image:alt" content="Graphical Playground — Build Graphics Engines from Scratch"> |
| 26 | + |
| 27 | + <!-- ── Twitter Card ── --> |
| 28 | + <meta name="twitter:card" content="summary_large_image"> |
| 29 | + <meta name="twitter:title" content="Graphical Playground — Build Graphics Engines from Scratch"> |
| 30 | + <meta name="twitter:description" content="An interactive platform where students deconstruct and rebuild graphics-engine systems — from raw Vulkan commands to full render pipelines."> |
| 31 | + <meta name="twitter:image" content="https://graphical-playground.com/assets/preview-image.png"> |
| 32 | + <meta name="twitter:image:alt" content="Graphical Playground — Build Graphics Engines from Scratch"> |
| 33 | + |
| 34 | + <!-- ── Favicons & Assets ── --> |
6 | 35 | <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> |
7 | 36 | <link rel="stylesheet" href="style.css"> |
8 | | - <title>Graphical Playground</title> |
9 | 37 | </head> |
10 | 38 | <body> |
11 | 39 |
|
|
0 commit comments