-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrac.html
44 lines (29 loc) · 1.27 KB
/
rac.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=PT+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 style="text-align: center;">RAC</h1>
<div class="container">
<div class="text-containter">
<div class="headline-wrap">
<h2 class="text-headline">Input</h2>
<button id="compile">Compile</button>
</div>
<textarea class="text-field" id="input" rows="20" cols="80">+1: mar := a + 1; PC := b + f;</textarea>
</div>
<div class="text-containter">
<h2 class="text-headline">Output</h2>
<textarea class="text-field" id="output" rows="20" cols="80" disabled></textarea>
</div>
<div class="text-containter output-containter">
<h2 class="text-headline">Error list</h2>
<textarea class="text-field" id="error" rows="10" cols="40" disabled></textarea>
</div>
</div>
<script src="rac.js"></script>
</body>
</html>