-
Notifications
You must be signed in to change notification settings - Fork 0
/
initiatives.html
125 lines (119 loc) · 6.44 KB
/
initiatives.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<!--this is to make the website responsive-->
<title>Transforming the Instructional Landscape</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="TIL with python/TIL Website/css/LSRS.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="TIL with python/TIL Website/js/navbar.js"></script>
</head>
<body>
<section class="header2">
<nav>
<div class=col>
<div class="logo">
<a href="index.html"><img
src="images/Logos/University of Toronto Logos/U of T Signature_Reverse RGB (1).png"></a>
</div>
</div>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li class="visit-underline"><a href="index.html">Home</a></li>
<li class="visit-underline"><a href="about.html">TIL Story</a></li>
<li id="underline" class="visit-underline"><a href="initiatives.html">Projects</a></li>
<li class="visit-underline"><a href="TIL with python/TIL Website/classroom.html">Classroom Redesign</a></li>
<li class="visit-underline"><a href="news.html">News and Reports</a></li>
<li class="visit-underline"><a href="til-advisory.html">TIL Advisory</a></li>
<li><a href="contact.html" class="button-header">
<div class="button-font">
Contact Us
</div>
</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
</section>
<!--About-->
<section class="aboutpage">
<div class="initiatives_about">
<h3>Projects</h3>
<p>Browse our projects developed by TIL.</p>
</div>
<div class="row">
<div class="initiativespage-col">
<img src="images/Project/Origin's of TIL_Image.svg">
<h3>TIL Winter 2021 Teaching Pilot</h3>
<p>The transition to online learning highlighted challenges with teaching in a new and unfamiliar environment. The pilot
supported instructors to experiment with new teaching technologies and modalities from on campus during the pandemic to
enhance the online learning experience for students. Learn more in the <a href="http://blogs.studentlife.utoronto.ca/innovationhub/files/2021/05/TIL_FinalApril2021_Compressed.pdf"
target="_blank" class="news-link2" overflow-wrap: break-word;>
TIL Winter Pilot Report
</a>.</p>
<!-- <div class="arrow"><img src="images/Icons/arrow.png"></div> -->
</div>
<div class="initiativespage-col">
<img src="images/Project/Origin's of TIL_Image-2.svg">
<a href="LSRS.html" class="news-link">
<h3>Learning Space Rating System</h3>
</a>
<p>The Learning Space Rating System (LSRS) project provides a set of criteria to measure how well classroom design supports
and enables active learning. This is based on Educause’s <a href="https://www.educause.edu/eli/initiatives/learning-space-rating-system"
target="_blank" class="news-link2" overflow-wrap: break-word;>
Learning Space Rating System
</a>.</p>
<!-- <div class="arrow"><img src="images/Icons/arrow.png"></div> -->
</div>
<div class="initiativespage-col">
<img src="images/Project/Group 79.svg">
<h3>Tech2U</h3>
<p>The Tech2U program humanizes classroom technical support to foster excellent and innovative teaching and learning in an
increasingly technological classroom. The program provides real-time, personalized technological support for instructors
through a technical support team, moving from a room-based approach to one focused on instructor needs. Learn more about
the launch of the program from the <a href="https://www.utoronto.ca/news/work-study-students-provide-u-t-professors-tech-support-fall" target="_blank" class="news-link2"
overflow-wrap: break-word;>
UofT News article
</a>.</p>
<!-- <div class="arrow"><img src="images/Icons/arrow.png"></div> -->
</div>
</div>
</section>
<!--Footer-->
<section class="cta">
<img src="images/Icons/question.png">
<div class="contact">
<p>Looking to get in touch with TIL? We’d love to hear from you!</p>
<a href="">CONTACT US ></a>
</div>
</section>
<!--Institutes-->
<section class="institutes">
<div class="row resize-image">
<a href="https://www.utoronto.ca" target="blank">
<img src="images/Home/Vector.svg" alt="">
</a>
<a href="https://lsm.utoronto.ca/index.html" target="blank">
<img src="images/Home/LSM_Logo2021.svg" alt="">
</a>
<a href="https://blogs.studentlife.utoronto.ca/innovationhub/" target="blank">
<img src="images/Home/Innovation Hub - Icon with Text.svg" alt="">
</a>
</div>
</section>
</body>
<!--JavaScript for Toggle Menu-->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() { navLinks.style.right = "0"; }
function hideMenu() { navLinks.style.right = "-200px"; }
</script>
</html>