-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentry.html
More file actions
42 lines (32 loc) · 1.28 KB
/
entry.html
File metadata and controls
42 lines (32 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MATLAB Tutorial</title>
<meta name="description" content="">
<meta name="author" content="rcooper">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/jquery/jquery.min.js"></script>
<script src="js/bootstrap/bootstrap.bundle.min.js"></script>
<script src="js/loader.js"></script>
<script src="js/main.js"></script>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/bootstrap/bootstrap.css">
</head>
<body>
<!-- Navbar -->
<div class="navbar-container"></div
<!-- Controller -->
<div class="container-fluid fill">
<div class="row vdivide">
<div class="col-sm-3 no-float">
<div id="task-container" class="task-container">
</div>
</div>
<div class="col-sm-8 no-float">
<textarea id="commandWindow" class="commandWindow" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" style="border-color: rgb(255, 255, 255);"></textarea>
</div>
</div>
</div>
</body>
</html>