-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.html
More file actions
73 lines (68 loc) · 2.27 KB
/
Copy pathrun.html
File metadata and controls
73 lines (68 loc) · 2.27 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Editor</title>
<meta name="og:title" content="Web Editor" />
<meta name="og:url" content="https://web-editor.wingram.org/" />
<meta name="description" content="Code and run frontend code in browser" />
<meta
name="og:description"
content="Code and run frontend code in browser"
/>
<meta name="og:image" content="https://base.wingram.org/images/logo.png" />
<link
rel="icon"
href="https://base.wingram.org/favicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
href="https://base.wingram.org/images/logo.png"
type="image/png"
/>
<link
rel="apple-touch-icon"
href="https://base.wingram.org/images/logo.png"
/>
<link rel="stylesheet" href="https://base.wingram.org/css/base.css" />
<link rel="stylesheet" href="style.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.5.0/lz-string.min.js"
integrity="sha512-qtX0GLM3qX8rxJN1gyDfcnMFFrKvixfoEOwbBib9VafR5vbChV5LeE5wSI/x+IlCkTY5ZFddFDCCfaVJJNnuKQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</head>
<body>
<div id="root">
<header id="header">
<a href="https://wingram.org">Wingram</a> -
<a href="https://wingram.org/#software">Software</a> -
<a href="https://www.youtube.com/@WingramOrg">Channel</a> -
<a
href="https://www.youtube.com/watch?v=VktWY4DWhrM&list=PLTKnPLJn0ggeXo-OXeNLkRAEJGj0NCBt2"
>Created</a
>
</header>
<nav>
<a href="/" class="logo">
<img src="https://base.wingram.org/images/logo.png" alt="Logo" />
<span>Web Editor</span>
</a>
<div class="action">
<button id="btn-source">View Source</button>
<button id="btn-share">Share</button>
</div>
</nav>
<main class="app">
<div class="app-ctn">
<iframe id="iframe" frameborder="0"></iframe>
</div>
</main>
</div>
<script src="run.js" type="module"></script>
</body>
</html>