-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
116 lines (94 loc) · 3.4 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
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Hello world! We're freeCodeCamp Toronto." />
<!-- Card value “summary”, “summary_large_image”, “app”, or “player”-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:domain" content="https://freecodecampto.github.io/">
<!-- Min 120x120px-->
<meta name="twitter:image" content="https://cdn.rawgit.com/freeCodeCampTO/freecodecampto.github.io/1290957b/img/freeCodeConf_card.jpg">
<meta name="twitter:title" property="og:title" itemprop="title name" content="freeCodeCampTO">
<!-- Characters max 60-->
<title>freeCodeCampTO</title>
<style>
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: "Lato";
src: url("/fonts/Lato-Regular.woff") format("woff");
}
body {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font: lighter 18px/100% "Lato", Helvetica, sans-serif;
}
h1 {
font: bold 36px/100% "Lato", Helvetica, sans-serif;
color: #333;
text-shadow: 1px 1px 3px #888;
margin-bottom: 0.5em;
}
h2 {
font: lighter 28px/100% "Lato", Helvetica, sans-serif;
color: #333;
text-shadow: 1px 1px 3px #888;
margin-bottom: 0.5em;
}
p {
margin: 0.5em 0;
}
div {
padding: 2rem;
}
#map {
padding: 2rem;
}
#logo {
border-radius: 50%;
box-shadow: 1px 3px 10px #333;
}
#text {
text-align: center;
}
</style>
</head>
<body>
<div>
<img id="logo" width="200px" height="200px" src="/img/fccTO_500.png">
</div>
<div id="text">
<h1>freeCodeCampTO</h1>
<h2>Learn to code with local campers every Saturday in Toronto!</h2>
<p>The Toronto chapter of
<a href="https://www.freecodecamp.org" target="_blank" rel="noopener">freeCodeCamp</a> meets every Saturday from 1-4pm. </p>
<p>Join us and get live coding help from a friendly community of self-taught coders!
</p>
</div>
<div>
<h2>We meet at:</h2>
<p>Devhub (Lighthouse Labs)
<br>662 King St West #101
<br> Toronto, ON
<br> M5V 1M7
</p>
</div>
<div id="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d2887.1919303903123!2d-79.4043929!3d43.644175!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x882b34de2de61291%3A0xe8fa22738afe6e7b!2s662+King+St+W%2C+Toronto%2C+ON+M5V+1M7!5e0!3m2!1sen!2sca!4v1547053152482" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div id="text">
<p>Want to help improve this page? Submit a
<a href="https://github.com/freeCodeCampTO/freecodecampto.github.io" target="_blank"
rel="noopener">pull request</a>!</p>
</div>
</body>
</html>