-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.28 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tetris</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<style>
html {
overflow-y: hidden;
}
</style>
</head>
<body>
<div id=root>
<h1><span style="color: red ;">T</span><span style="color: orange;">E</span><span
style="color: yellow;">T</span><span style="color: #3c803c;">R</span><span
style="color: cyan;">I</span><span style="color: darkmagenta;">S</span><span style="color: red;">
WebGPU</span></h1><br>
<div id=info>
<p id=info1>Created by Konstantin84UKR </p>
<p id=info2>-----------------------------</p><a id=info3
href="https://github.com/Konstantin84UKR/Tetris_WebGPU">https://github.com/Konstantin84UKR/Tetris_WebGPU</a>
</div>
</div>
<script src='./index.js' type='module'></script>
</body>
</html>