-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (46 loc) · 2.28 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 lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Charlotte Python Meetup</title>
<meta name="description" content="Charlotte NC Python Meetup Group">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
.content {margin-top: 50px; max-width: 80%;}
.btn {margin: 15px 5px;}
.btn-black {background: #323232; color: #ffffff;}
</style>
</head>
<body>
<div class="content container-fluid">
<div class="jumbotron">
<h1>Charlotte Python User Group</h1>
</div>
<h1>What we do</h1>
<p>The Charlotte Python User Group puts on two meetups every month. Pythonistas of every skill level are welcome.</p>
<p><a class="btn btn-danger btn-lg" href="https://www.meetup.com/python-charlotte/" role="button" target="_blank">Visit Our Meetup Page</a></p>
<h1>Python Office Hours meetup</h1>
<div class="row">
<div class="offset-sm-1">
<p>Bring your laptop and your latest coding project to the Office Hours meetup to get feedback, mentoring and some
solid time on the keyboard in a social setting.</p>
</div>
</div>
<h1>Monthly Social meetup</h1>
<div class="offset-sm-1">
<p>Discuss your latest Python work and get feedback and mentorship at the monthly social meetup.</p>
</div>
<h1>Get involved</h1>
<div class="offset-sm-1">
<p>Join the <a href="https://www.meetup.com/python-charlotte/">Python Charlotte</a> group on Meetup.com or <a href="https://www.linkedin.com/company/charlotte-python-meetup/">follow us on LinkedIn</a> to get notifications for the latest meetups.</p>
<p>We use the the <a href="https://slack.charlottedevs.com/">CLT Devs Slack group</a> for instant messaging.</p>
<p>We also have a <a href="https://github.com/pythonclt">Github</a> organization.</p>
<p>View our group's <a href="recs.html">book and tutorial recommendations for new and experienced programmers</a></p>
</div>
<h1>Code of Conduct</h1>
<div class="offset-sm-1">
<p>All participants are expected to follow the <a href="http://www.python.org/psf/codeofconduct/">PSF Code of Conduct</a>.</p>
</div>
</div>
</body>
</html>