This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Maven+Pro&display=swap">
<link rel="stylesheet" href="css/style.css">
<title>🐢 Logo Interpreter</title>
</head>
<body>
<!-- Navigation Bar -->
<header class="navbar">
<p class="title">🐢 Logo Interpreter</p>
<p class="desc">Made with ❤️ by <a href="https://github.com/younesaassila">Younes</a></p>
</header>
<main>
<!-- Commands -->
<section id="commands-container" class="container">
<div class="title-bar">
<p class="title">Commands</p>
</div>
<div id="commands"></div>
</section>
<!-- Canvas -->
<section id="canvas-container" class="container">
<div class="title-bar">
<p class="title">Canvas</p>
<span>
<a href="#" id="save-button" download="drawing.png">Save</a>
</span>
</div>
<canvas id="canvas" width="0" height="0"></canvas>
</section>
<!-- Code Editor -->
<section id="editor-container" class="container">
<div class="title-bar">
<p class="title">Code</p>
<span>
<input type="checkbox" id="live" name="live" checked>
<label for="live">Live</label>
<a href="#" id="run-button">Run</a>
</span>
</div>
<textarea id="editor" autocomplete="off" autocorrect="off"
autocapitalize="off" spellcheck="false" autofocus></textarea>
</section>
</main>
<!-- Scripts -->
<script src="js/turtle.js"></script>
<script src="js/command.js"></script>
<script src="js/interpreter.js"></script>
<script src="js/app.js"></script>
</body>
</html>