-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (76 loc) · 3.19 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSEP 503</title>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,600' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'>
<link href="site/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="site/css/main.css">
</head>
<body>
<header class="site-header">
<!-- Javascript will load the navigation bar code here. -->
</header>
<div class="container">
<!-- Use this navigation box as desired on some or all pages to provide navigation links
in addition to the top menu. -->
<!--<div class="nav-box">-->
<!--<p id="nb1-header" class="nav-box-header">General</p>-->
<!--<nav>-->
<!--<ul aria-labelledby="nb1-header">-->
<!--<li><a href="">Link 1</a></li>-->
<!--<li><a href="">Link 2</a></li>-->
<!--</ul>-->
<!--</nav>-->
<!--<p id="nb2-header" class="nav-box-header">Communications</p>-->
<!--<nav>-->
<!--<ul aria-labelledby="nb2-header">-->
<!--<li><a href="">Link 3</a></li>-->
<!--<li><a href="">Link 4</a></li>-->
<!--</ul> -->
<!--</nav>-->
<!--<p id="nb3-header" class="nav-box-header">Resources</p>-->
<!--<nav>-->
<!--<ul aria-labelledby="nb3-header">-->
<!--<li><a href="">Link 5</a></li>-->
<!--<li><a href="">Link 6</a></li>-->
<!--</ul> -->
<!--</nav>-->
<!--</div>-->
<!-- Begin home page content -->
<p>
The goal of this class is to study the major areas under
Software Engineering and how they are treated today in
industry. Topics covered will include Design, Architecture,
Development, Testing, Security, Privacy, Maintenance and
others.
</p>
<p>
The class is structured around lectures by the staff, guest
lecturers and panels from industry and class discussions/break-out sessions.
</p>
<h2 id="general-information">General information</h2>
<ul>
<li>Staff: Jim Miller and Therapon (Theo) Skoteiniotis</li>
<li>Time and Location: TBD</li>
<!--<li><a href="https://canvas.uw.edu/">Canvas</a></li>-->
</ul>
<!-- End home page content -->
</div>
<footer class="site-footer">
<!-- Javascript will load the footer code here. -->
</footer>
<script src="site/js/jquery.min.js"></script>
<script src="site/js/bootstrap.min.js"></script>
<script>
$(function(){
// Include the nav bar and footer
$("header").load("site/nav-bar.html");
$("footer").load("site/footer.html");
});
</script>
</body>
</html>