-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (83 loc) · 4.93 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Getting Unstuck</title>
<meta name="description" content="A project for learning to debug computer programs">
<meta name="author" content="Creative Computing Lab at the Harvard Graduate School of Education">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">-->
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- <link rel="stylesheet" href="https://use.typekit.net/lwk5jup.css" />-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.typekit.net/lwk5jup.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/index.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121701097-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-121701097-1');
</script>
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container-splash">
<div class="header">
<div class="nav">
<div class="logo-container">
<a href="index.html"><img src="images/logo.png" class="logo"></a>
</div>
<nav class="nav-items nav-right">
<div class="nav-link nav-1">
<a href="signup.html" class="nav-link">SIGN UP</a>
</div>
<div class="nav-link">
<a href="strategies.html" class="nav-link">STRATEGIES</a>
</div>
<!-- <div class="nav-link">
<a href="challenges.html">CHALLENGES</a>
</div> -->
<div class="nav-link">
<a href="about.html">ABOUT</a>
</div>
</nav>
</div>
</div> <!-- end div for header -->
<div class="row splash">
<div class="six columns" id="splash-page">
<h4>Getting Unstuck</h4>
<p><strong>JULY 6-17, 2020</strong></p>
<p><em>10 days. 10 Scratch projects. What will you make?</em></p>
<p>Dear friends,</p>
<p> Supporting creative work in the classroom can be challenging, and we want to help! We're excited to offer Getting Unstuck, a summer learning experience for teachers who want to learn more about supporting creative work with the Scratch programming language.</p>
<p>Every day, you'll get an email with a small, creative programming prompt, designed to help you explore different computational concepts and debugging strategies in Scratch. You'll have access to a supportive <a href="https://www.facebook.com/groups/GettingUnstuckCommunity/" target=”_blank”>online community</a> of teachers and facilitators. Whether you're brand new to Scratch or an experienced teacher, we'll be right beside you, making things and learning together.</p>
<p>Yours in creative computing,
<br/>Paulina and Karen</p>
</div>
<div class="six columns">
<img src="images/SIGCSE_Bugs.png" id="header-img">
<div align="center"><p><a class="button" href="signup.html" id="signup">Sign up for Getting Unstuck!</a></p></div>
</div>
</div>
</div>
</body>
<div class="footer">
Getting Unstuck is a project of the <a href="https://creativecomputing.gse.harvard.edu/" target="_blank">Creative Computing Lab</a> at the Harvard Graduate School of Education <a href="https://www.facebook.com/groups/GettingUnstuckCommunity" target="_blank"><i class="fab fa-facebook-f"></i></a> <a href="https://twitter.com/scratchedteam?lang=en" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
</html>