-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (29 loc) · 1.25 KB
/
index.html
File metadata and controls
39 lines (29 loc) · 1.25 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
<html lang="pt-br">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="UTF-8">
<title>Programar - Linguagem Égua</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/theme.css">
<link rel="shortcut icon" href="./assets/logo_egua.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="left"><select id="demoSelector"></select></div>
<div id="middle"><img src="./assets/egua.png" alt="egua" width="100px" height="auto"></div>
<div id="right"><button id="runBtn">Executar</button></div>
</div>
<div id="editor"></div>
<div id="output" aria-live="polite"></div>
<!-- Linguagem Égua em CDN -->
<script src="https://cdn.jsdelivr.net/npm/egua/dist/egua.min.js"></script>
<!-- Framework do editor do código -->
<script src="./js/codeflask.min.js"></script>
<!-- Core da IDE -->
<script src="./js/demos.js"></script>
<script src="./js/index.js"></script>
</body>
</html>