-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
92 lines (92 loc) · 2.25 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<style>
body {
font-family: monospace;
font-size: 20px;
margin: 50px;
}
h1,
h3 {
display: inline;
}
li {
margin-bottom: 5px;
}
</style>
<title>Demo</title>
</head>
<body>
<h1>
Demo
<h3>by <a href="https://github.com/ShizukuIchi">shizuku</a></h3>
</h1>
<ul>
<li>
<a href="elements-css/">Elements - CSS</a>
</li>
<li>
<a href="elements-css-2/">Elements - CSS 2</a>
</li>
<li>
<a href="elements-dom/">Elements - DOM</a>
</li>
<li>
<a href="console-message/">Console - Message</a>
</li>
<li>
<a href="react-render-counter/">React Render Counter</a>
</li>
<li>
<a href="console-utilities/">Console - Utilities</a>
</li>
<li>
<a href="console-context/">Console - Context</a>
</li>
<li>
<a href="sources-files/">Sources - Files</a>
</li>
<li>
<a href="sources-workspace/">Sources - Workspace</a>
</li>
<li>
<a href="sources-breakpoints/">Sources - Breakpoints</a>
</li>
<li>
<a href="sources-step-by-step-execution/"
>Sources - Step-by-Step Execution</a
>
</li>
<li>
<a href="sources-javascript-debugging/"
>Sources - JavaScript Debugging</a
>
</li>
<li>
<a href="critical-rendering-path/">Critical Rendering Path</a>
</li>
<li>
<a href="memory-leak/">Memory Leak</a>
</li>
<li>
<a href="performance-analyze-runtime-activities/"
>Performance - Analyze Runtime Activities</a
>
</li>
<li>
<a href="cors-canvas/">CORS - Canvas</a>
</li>
<li>
<a href="device-orientation-motion/">Device - Orientation & Motion</a>
</li>
<li>
<a href="blur-canvas/">Blur Canvas</a>
</li>
</ul>
</body>
</html>