diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..accba65
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.vscode
+*.http
diff --git a/index.html b/index.html
index e69de29..4acd19f 100644
--- a/index.html
+++ b/index.html
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+ Nairobi Gophers
+
+
+
+ Nairobi Gophers
+
+
+ This is a Nairobi-based group of people interested in the Go programming language.
+ We aim to create a community around the language and share experiences adopting the language.
+ Past events and interactions can be found on the Meetup page.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/images/github.svg b/static/images/github.svg
new file mode 100644
index 0000000..aa05db9
--- /dev/null
+++ b/static/images/github.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/gopher.svg b/static/images/gopher.svg
new file mode 100644
index 0000000..cdefc50
--- /dev/null
+++ b/static/images/gopher.svg
@@ -0,0 +1,87 @@
+
+
+
+
\ No newline at end of file
diff --git a/static/images/meetup.svg b/static/images/meetup.svg
new file mode 100644
index 0000000..1518e0f
--- /dev/null
+++ b/static/images/meetup.svg
@@ -0,0 +1,59 @@
+
+
+
\ No newline at end of file
diff --git a/static/images/whatsapp.svg b/static/images/whatsapp.svg
new file mode 100644
index 0000000..3fb1666
--- /dev/null
+++ b/static/images/whatsapp.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/static/styles/main.css b/static/styles/main.css
new file mode 100644
index 0000000..b103be9
--- /dev/null
+++ b/static/styles/main.css
@@ -0,0 +1,38 @@
+html,body{
+ padding:0;
+ margin:0;
+ font-family: Arial, Helvetica, sans-serif;
+}
+body{
+ display: grid;
+ grid-template-columns: 1fr;
+ padding:1em;
+}
+.centered{
+ text-align: center;
+}
+h1{
+ color:blue;
+}
+#welcome{
+ display: grid;
+ padding:1.5rem;
+ color:#fff;
+ font-weight: 100;
+ background-color: blue;
+ padding:1.5rem;
+}
+a{
+ margin:1rem 0.6rem;
+ text-decoration: none;
+}
+@media only screen and (min-width:768px){
+ body{
+ grid-template-columns: 1fr 2fr;
+ }
+}
+@media only screen and (min-width:900px){
+ body{
+ grid-template-columns: 1fr 2fr 1fr;
+ }
+}