Skip to content
Snippets Groups Projects
Select Git revision
  • da4be39ee0d4802edce37ae80d3a1391eac30a7a
  • main default protected
  • master
  • 1.1.2
  • 3.0.0
  • 1.1.0
  • 1.0.0
7 results

version.html

Blame
  • index.html 377 B
    <!doctype html>
    <html>
        <head>
            <meta charset="utf-8">
            <title>WebGL Tutorial</title>
            <style>
    canvas#view {
        display: block;
        width: 100%;
        height: 25em;
    	background: radial-gradient(gray, transparent);
    }
            </style>
        </head>
        <body>
            <canvas id="view"></canvas>
            <script src="script.js"></script>
        </body>
    </html>