-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
59 lines (47 loc) · 2 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
<!DOCTYPE html>
<html>
<head>
<title>Online SVG Code Editor</title>
<base href="/" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link href='main.css' rel='stylesheet'>
</head>
<body>
<a target="_blank" href="https://github.com/nbelyh/editsvgcode"><img width="149" height="149"
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_orange_ff7600.png?resize=149%2C149"
style="position: absolute; right: 0; top:0; z-index: 10000;" alt="Fork me on GitHub" data-recalc-dims="1"></a>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark fixed-top">`
<a class="navbar-brand" href="#">Online SVG code editor</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<button id="upload" class="btn btn-outline-secondary">Upload...</button>
<button id="download" class="btn btn-outline-secondary">Download</button>
<button id="save" class="btn btn-outline-secondary">Save</button>
</div>
</nav>
<input type="file" id="file_upload" accept="image/svg+xml" style="display: none;" />
<div id="main">
<div id="editor"></div>
<div id="output"></div>
</div>
<div id="footer" class="bg-dark">
<div class="text-muted">Built by Nikolay Belykh @
<a href="https://unmanagedvisio.com" target="_blank">Unmanaged Visio</a>
check out the website privacy policy
<a class="navbar-link" href="privacy-policy.md" target="_blank">here</a>
</div>
</div>
<script src='app.js'></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-10432335-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-10432335-7');
</script>
</body>
</html>