[READ-ONLY] Mirror of https://github.com/probablykasper/canvas-experiments. Just me learning to use HTML canvas canvas-experiments.kasper.space
canvas html5-canvas website
0

Configure Feed

Select the types of activity you want to include in your feed.

1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="theme-color" content="#db5945"> 6 <title>Canvas</title> 7 <!--Roboto--> <link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet"> 8 <!--Favicon: http:/#F986DF/realfavicongenerator.net --> 9 <link rel="stylesheet" type="text/css" href="/css/home.css?r=<?=rand(0,999)?>"> 10 </head> 11 12 <body> 13 <section class="main"> 14 <canvas width="300px" height="150px"></canvas> 15 </section> 16 <script src="main.js"></script> 17 </body> 18</html>