-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
50 lines (48 loc) · 1.97 KB
/
Copy pathpreview.html
File metadata and controls
50 lines (48 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RowCode Preview</title>
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/x-icon" href="RowCode.png">
<link rel="icon" href="icon-192.png">
<link rel="apple-touch-icon" href="icon-192.png">
<meta name="author" content="Rownok Ahmed">
<meta name="keywords" content="code, editor, browser, html, css, javascript, online, web development, preview">
<meta property="og:title" content="RowCode Preview">
<meta property="og:description" content="A mobile-first code editor for HTML, CSS, and JavaScript that works in your browser.">
<meta property="og:image" content="RowCode.png">
<meta property="og:url" content="https://github.com/rownok860/rowcode/preview.html">
<link rel="stylesheet" href="css/preview.css">
</head>
<body>
<div class="preview-header">
<div class="preview-title">
<i class="fas fa-eye"></i>
<span>RowCode Preview</span>
</div>
<div class="preview-controls">
<a href="https://github.com/rownok860/rowcode" target="_blank" class="btn">
<i class="fab fa-github"></i>
<span class="text">Contribute</span>
</a>
<a href="index.html" class="btn">
<i class="fas fa-arrow-left"></i>
<span class="text">Back to Editor</span>
</a>
<button class="btn btn-outline" onclick="window.location.reload()">
<i class="fas fa-sync-alt"></i>
<span class="text">Refresh</span>
</button>
</div>
</div>
<div id="preview-content">
<div class="loading">
<i class="fas fa-spinner fa-spin"></i>
<span style="margin-left: 10px;">Loading preview...</span>
</div>
</div>
<script src="js/preview.js"></script>
</body>
</html>