-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 1.6 KB
/
Copy pathindex.html
File metadata and controls
56 lines (48 loc) · 1.6 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript Playground</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="/node_modules/@picocss/pico/css/pico.min.css">
<link rel="stylesheet" href="/src/index.css">
<script type="module" src="/src/main.mjs"></script>
</head>
<body>
<header class="container">
<hgroup>
<h1 id="pagetitle">Javascript and Web Playground</h1>
</hgroup>
</header>
<main class="container">
<section>
<h2>Pico.CSS Reference</h2>
<a href="/cssref.html">CSS Showcase</a>
</section>
<section>
<h2>Web Workers</h2>
<p>
<span>Output: </span>
<span id="workerHook"></span>
</p>
<button id="startWorker" class="contrast outline">Start Worker</button>
<button id="stopWorker" class="contrast outline">Stop Worker</button>
</section>
<section>
<h2>Geolocation</h2>
<button class="contrast" type="button" id="getLocationBtn">Get Location</button>
<p id="location"></p>
</section>
<section>
<h2>Regex</h2>
<button class="contrast" type="button" id="testEmailRegexBtn">Test Email Regex</button>
<p id="emailContent"></p>
</section>
<section>
<h2>Three.js</h2>
<div id="three-app"></div>
</section>
</main>
</body>
</html>