-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<title>GSG Workshops</title>
<style>
body {
font-family: sans-serif;
padding: 20px 40px;
}
.workshop {
margin-bottom: 100px;
}
.workshop a {
font-size: 18px;
margin: 0 0 10px 20px;
display: block;
}
</style>
</head>
<body>
<div class='workshop'>
<h2>SCSS and CSS Animations</h2>
<a target='_blank' href='https://docs.google.com/presentation/d/1-SYuGZfG9ONcYMJE8rVXFUrT3WjH6U5EU875te16e-E/edit?usp=sharing'>Slides</a>
<a target='_blank' href='https://github.com/tomduggan85/scss-workshop'>Start exercise from github</a>
</div>
<div class='workshop'>
<h2>State management in React apps using Redux</h2>
<a target='_blank' href='https://docs.google.com/presentation/d/1i26k1JoW8XtykfLx5qIdpZGjLTIGwj_Gcvp_ssqbwOs/edit?usp=sharing'>Slides</a>
<a target='_blank' href='https://github.com/tomduggan85/redux-workshop'>Start exercise from github</a>
</div>
<div class='workshop'>
<h2>3D in the browser</h2>
<a target='_blank' href='https://docs.google.com/presentation/d/133inUAa2eVmNXoNQWnm-6KWbHvvd1WEg8iVlwVtwlKk/edit?usp=sharing'>Slides</a>
<a target='_blank' href='https://codepen.io/tduggan/pen/NLxYLR'>Start exercise on codepen</a>
<a target='_blank' href='https://github.com/tomduggan85/threejs_exercise_start'>Start exercise from github</a>
</div>
<div class='workshop'>
<h2>HTML5 <Canvas></h2>
<a target='_blank' href='https://docs.google.com/presentation/d/1P_0JKKmxeIp6jcC1ZMJNom_VMTXbdDRLUC-ztnc9olw/edit?usp=sharing'>Slides</a>
<a target='_blank' href='https://codepen.io/tduggan/pen/gjNvBo'>Start exercise on codepen</a>
<a target='_blank' href='https://github.com/tomduggan85/canvas_exercise_start'>Start exercise from github</a>
</div>
</body>
</html>