Skip to content
Snippets Groups Projects
Select Git revision
  • dc1ff815329a33353d43e7ccec148c97ec7af2e0
  • main default protected
  • hgb-wip
  • AWS
4 results

App.css

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>