[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.

canvas-experiments / 4 / index.php
617 B 19 lines
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></canvas> 15 </section> 16 <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> --> 17 <script src="main.js?r=<?=rand(0,999)?>"></script> 18 </body> 19</html>