-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (40 loc) · 2.12 KB
/
index.html
File metadata and controls
56 lines (40 loc) · 2.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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">
<script>
function begin() {
window.location.href = './presurvey.html';
}
</script>
</head>
<body>
<!-- Navbar -->
<div class="navbar-container"></div
<!-- Controller -->
<div class="container-fluid fill">
<br>
<div class="row" style="">
<div class="col-md-2"></div>
<div class="col-md-8">
<div id="intro-container" class="intro-container centered">
<p>Welcome to our MATLAB Tutorial for non-programmers. This quick and easy online tutorial will introduce you to the wonderful world of MATLAB programming. The tutorial is structured into a quick “Getting Started” interactive introduction to MATLAB command line and the basic rules of coding scripts. Once completed you can further your skills by completing any of the individual exercises in the “Problems” section. Each problem is written for a non-programming audience and is either a biology or electrical engineering problem. There will be surveys for users to take before and after the tutorial, as well as smaller surveys spread throughout. Please take and answer them honestly so we can improve the learning experience for everyone.</p>
<p>For best the experience, please use Chrome version 69 or newer.</p>
<button type="button" id="begin-button" onclick="begin();" class="btn btn-primary btn-lg btn-block">Begin!</button>
</div>
</div>
<div class="col-md-2"></div>
</div>
</div>
</body>
</html>