-
Notifications
You must be signed in to change notification settings - Fork 1
/
forums.html
133 lines (106 loc) · 2.6 KB
/
forums.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
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<meta charset="utf-8">
<title>TEALS GitHub</title>
<style type="text/css">
body {
padding: 0;
margin: 0 0 50% 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 100%;
line-height: 140%;
}
div.top-banner {
margin: 0 auto;
padding: 0px 0;
background: rgb(0, 133, 117);
height: 200px;
font-family: 'Segoe Semibold', Tahoma, Geneva, Verdana, sans-serif;
color: white;
}
div.logo {
margin: 0px auto 0 auto;
width: 44em;
}
.gh-logo {
fill: rgb(0, 133, 117);
}
div.content {
margin: 0 auto 25% auto;
max-width: 44em;
}
div.github-logo {
display: inline;
padding-top: 8px;
margin-top: 0em;
}
h1,
h2,
h3 {
color: rgb(0, 133, 117);
;
font-family: 'Segoe Semibold', Tahoma, Geneva, Verdana, sans-serif;
font-weight: lighter;
}
h1 {
font-size: 300%;
margin: 1.2em 0 .9em 0;
}
h2 {
font-size: 200%;
margin: 1em 0 0 0;
margin-bottom: .5em;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
margin-top: 1em;
list-style-type: none;
}
li {
text-indent: -2ex;
margin-bottom: 0.5em;
}
p {
margin-top: 0.5em;
font-weight: 100;
color: rgb(80, 80, 80);
}
dt {
text-decoration: underline;
}
dl {
margin-left: 4ex;
}
dd {
margin-bottom: 0.5em;
}
.nowrap {
white-space: nowrap;
}
</style>
<!-- =========================================================================================== -->
<div class="top-banner">
<div class="logo">
<img width="200px" style="margin: auto auto auto -25px" src="image/Microsoft-logo_rgb_c-wht.png" /><br />
<span style="font-size: medium;">TEALS Program</span> <br /><br />
<span style="color: #30e5d0; font-size: large;">Building equitable, inclusive computer science programs in high
schools.</span>
</div>
</div>
<div class="content">
<h2>TEALS curriculum discussion forums</h2>
<ul>
<li><a href="https://github.com/TEALSK12/introduction-to-computer-science/discussions">1st semester intro to
computer science – Snap!</a></li>
<li><a href="https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science/discussions">2nd Semester
intro to computer science – Python</a></li>
<li><a href="https://github.com/TEALSK12/apcsa-public/discussions">AP Computer Science A</a></li>
</ul>
<p><span style="font-size: medium;">Visit your partner curriculum provider website for information specific to their
curricula.</span></p>
</body>
</html>