Skip to content
Snippets Groups Projects
Select Git revision
  • 16facd3750880f8ca2124794b4f1a5a7d756f84f
  • master default protected
2 results

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