-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLicenseSelector.html
33 lines (33 loc) · 1.66 KB
/
LicenseSelector.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="LicenseSelector.css">
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/[email protected]/code-input.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/[email protected]/code-input.min.css"><!--ref https://github.com/WebCoder49/code-input-->
<link href="https://unpkg.com/[email protected]/dist/nord.css" rel="stylesheet" type="text/css" /><!--ref https://highlightjs.org/-->
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
<script defer src="LicenseSelector.js"></script>
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div class="column">
<div class="preview" id="previewArea">
</div>
</div>
<div class="column">
<div class="titleArea">
<h1 class="title"><img src="favicon.png" width="50" height="50" class="favicon"> License Embed Select</h1>
<div id="error"></div>
<div class="controls">
<select id="selection" onchange="onSelect(this.value)"></select>
<button onclick="clipboardCopy()">Copy to clipboard</button>
</div>
<div class="githubInfo"><b><a href="https://github.com/alexankitty/GB-LicenseEmbeds" target="_blank">GitHub ReadMe and Source</a></b></div>
</div>
<div class="resizable-content">
<code-input id="codeBlock" lang="HTML"></code-input>
</div>
</div>
<div id="snackbar"></div>
</body>
</html>