-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·89 lines (63 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<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>Docs — Summer Online Courses</title>
<!-- Bootstrap CSS files-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Google Open Sans web font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700" rel="stylesheet">
<!-- Font Awesome Web Icons -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- custom local css file -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar yamm navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<h1><a class="navbar-brand" href="index.html">Summer Online Courses Page</a></h1>
</div> <!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
</div><!-- /.navbar-collapse -->
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 id="page-header">Documentation</h1>
<hr>
<!-- Embed the documentation as a Google Doc -->
<p class='text-right'>
<a href='https://docs.google.com/document/d/1CbtYVq6fFY-tWIKUwZ_VpkWZ2OjnmlILnBt0QPcHTkI/preview' target='_blank'><i class='fa fa-print fa-spacer-right' aria-hidden='true'></i>Print This</a>
</p>
<iframe width='100%' height='1000' frameborder='0' scrolling='yes' class="embed-responsive-item" src='https://docs.google.com/document/d/1CbtYVq6fFY-tWIKUwZ_VpkWZ2OjnmlILnBt0QPcHTkI/preview' allowfullscreen></iframe>
</div>
</div>
<!-- .row -->
</div>
<!-- .container -->
<!-- Footer -->
<footer class="footer container">
<hr>
<div class="row">
<div class="col-sm-9">
<p class="text-muted">© 2019 <a href="https://online.nd.edu/" target="_blank">Office of Digital Learning</a>, <a href="https://www.nd.edu/" target="_blank">University of Notre Dame</a></p>
</div>
<div class="col-sm-3">
<p class="text-center"><a href="mailto:rharriso@nd.edu">Contact Webmaster</a></p>
</div>
</div>
</footer>
<!-- jQuery Javascript Library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap Library -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<!-- Local Javascript add on -->
<script src="js/main.js" type="text/javascript"></script>
</body>
</html>