-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.31 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aurorasoft WebHTML</title>
<link rel="shortcut icon" href="https://webhtml.pages.dev/cdn/branding/images/favicon/favicon.svg" type="image/x-icon">
<link rel="preconnect" href="https://fontapi.pages.dev">
<link rel="preconnect" href="https://fontstatic.pages.dev" crossorigin>
<link href="https://fontapi.pages.dev/css/global.css" rel="stylesheet">
<script src="https://apicenter.pages.dev/libraries/andorra/min/vs/loader.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img id="logo" src="https://webhtml.pages.dev/cdn/branding/images/logo/wordmark.png" alt="WebHTML">
<div class="button-container">
<button title="Open HTML..." id="openButton">Open</button>
<button title="Save HTML..." id="saveButton">Save</button>
<button title="Toggle Preview Window" id="previewPopup" class="text">Run</button>
<button title="Get Help" id="help">Help</button>
</div>
<div id="editor-container">
<div id="editor" class="pane"></div>
</div>
<script src="script.js"></script>
<script src="helpers.js"></script>
</body>
</html>