Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,27 @@ hr {

#contact-us {
height: 100vh;
background-color: orange;
background-color: white;
}

.contact-us__icon {
width: 55px;
height: 55px;
}

#contact-us__iframe {
border: 0;
height: 300px;
width: 500px;
}

.contact-us__container {

}

.contact-us__container__image {
margin: 0px 15px;
}
.testimonials__faces {
height: 10vh;
width: 10vh;
Expand Down
Binary file added assets/images/GitHub-Dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/meetup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions assets/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,6 @@ $(document).ready(function() {
}

setUpTestimonials();

$('#contact-us__iframe').attr('src', "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2311.6336498243927!2d-5.9428546839875915!3d54.59282908831475!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x486108f686ba0491%3A0xf206df9d70d81d76!2sFarset+Labs!5e0!3m2!1sen!2suk!4v1560701414902!5m2!1sen!2suk");
});
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,26 @@ <h2>Contact Us</h2>
<main>
<p>This is a placeholder.</p>
</main>
<div class="contact-us__container container">
<div class="contact-us__container__image">
<a href="https://github.com/code-co-op">
<img src="assets/images/GitHub-Dark.png" class="contact-us__icon">
</a>
</div>
<div class="contact-us__container__image">
<a href="https://www.meetup.com/CodeCoop-NI/">
<img src="assets/images/meetup.png" class="contact-us__icon">
</a>
</div>
<div class="contact-us__container__image">
<a href="mailto:codecoop@gmail.com">
<i class="far fa-envelope fa-4x"></i>
</a>
</div>
</div>
<div class="container">
<iframe src="" id="contact-us__iframe" frameborder="0" allowfullscreen></iframe>
</div>
</section>

<section id="testimonials" class="full-height-background">
Expand Down