-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.04 KB
/
index.html
File metadata and controls
29 lines (28 loc) · 1.04 KB
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
<!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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<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 Group</h1>
<p>Visit our Meetup page and Github page</p>
<div class="well well-lg">
<div class="container">
<a class="btn btn-danger btn-lg" href="https://www.meetup.com/python-charlotte/" role="button" target="_blank">Visit Our Meetup Page</a>
<a class="btn btn-primary btn-lg" href="https://github.com/pythonclt" role="button" target="_blank">Visit Our Github Page</a>
</div>
</div>
</div>
</div>
</body>
</html>