-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <meta content="width=1024, height=768, viewport-fit=contain"-->
<!-- name="viewport">-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="WK" name="author">
<meta content="JSGame" name="description">
<meta content="javascript,game,webgl2" name="keywords">
<title>JSGame Title</title>
<link href="main.css" rel="stylesheet">
<script defer type="module" src="main.js"></script>
</head>
<body>
<div class="window">
<div class="title-bar">
<div class="title-bar-text">
My First VB4 Program
</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<canvas id="webgl-canvas">
Your browser does not support the HTML5 canvas element.
</canvas>
</div>
</div>
</body>
</html>