109 lines
5.4 KiB
Plaintext
109 lines
5.4 KiB
Plaintext
<div class="np-homepage-featured np-faq np-max-width">
|
||
<div class="np-homepage-featured-text">
|
||
<div class="np-homepage-headline">
|
||
Frequently Asked Questions
|
||
</div>
|
||
</div>
|
||
<div class="row np-faqs">
|
||
<div class="col-md-6">
|
||
<div class="np-accordion">
|
||
<div class="accordion-btn">
|
||
<i class="fal fa-plus"></i>
|
||
<div class="accordion-title"><strong>Q:</strong> Do I need photography experience before signing up for a course on Pixel Academy?</div>
|
||
</div>
|
||
<div class="accordion-panel">
|
||
<div class="accordion-panel-content">
|
||
<p><strong>A:</strong> Absolutely not! We have courses available for every level and welcome any photographers - from beginners to advanced to take courses on Pixel Academy.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="np-accordion">
|
||
<div class="accordion-btn">
|
||
<i class="fal fa-plus"></i>
|
||
<div class="accordion-title"><strong>Q:</strong> Do I need advanced computer skills to use the Pixel app?</div>
|
||
</div>
|
||
<div class="accordion-panel">
|
||
<div class="accordion-panel-content">
|
||
<p><strong>A:</strong> No, the Pixel app was built with modern design principles to ensure a sleek and frictionless photo editing experience. The app is very intuitive and does not require any technical computer skills to use.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="np-accordion">
|
||
<div class="accordion-btn">
|
||
<i class="fal fa-plus"></i>
|
||
<div class="accordion-title"><strong>Q:</strong> What certificates are available for me when I complete a course on Pixel Academy?</div>
|
||
</div>
|
||
<div class="accordion-panel">
|
||
<div class="accordion-panel-content">
|
||
<p><strong>A:</strong> Pixel Academy has a number of certificates available to our photographers and is constantly creating new courses and certificate programs to elevate photography editing skills. Check out the Certification section in the Pixel app for more information.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<div class="np-accordion">
|
||
<div class="accordion-btn">
|
||
<i class="fal fa-plus"></i>
|
||
<div class="accordion-title"><strong>Q:</strong> Can I take courses on an iPad, iPhone or other mobile devices/tablets, etc?</div>
|
||
</div>
|
||
<div class="accordion-panel">
|
||
<div class="accordion-panel-content">
|
||
<p><strong>A:</strong> Yes! Our Pixel Academy is Designed with a mobile-first approach to ensure that the use experience is seamless on any device.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="np-accordion">
|
||
<div class="accordion-btn">
|
||
<i class="fal fa-plus"></i>
|
||
<div class="accordion-title"><strong>Q:</strong> Do I need to buy any books or other reference material to augment the course work?</div>
|
||
</div>
|
||
<div class="accordion-panel">
|
||
<div class="accordion-panel-content">
|
||
<p><strong>A:</strong> Nope! Just come with your eagerness to learn! No additional books or reference material is needed to augment any of our courses.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="np-accordion">
|
||
<div class="accordion-btn">
|
||
<i class="fal fa-plus"></i>
|
||
<div class="accordion-title"><strong>Q:</strong> How will my instructors communicate with me while I’m taking a course? Can I contact them?</div>
|
||
</div>
|
||
<div class="accordion-panel">
|
||
<div class="accordion-panel-content">
|
||
<p><strong>A:</strong> Instructors will send email notifications for any updates they want to provide to the learners of their lessons. Should you need to contact them, you can do so through email. Emails will be provided within the instructor section of the Pixel Academy.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
/
|
||
<style>
|
||
.fa-plus {
|
||
background-image: unset;
|
||
background: #0297FA;
|
||
}
|
||
.fa-minus {
|
||
background-image: unset;
|
||
background: #0297FA; }
|
||
</style>
|
||
|
||
<script>
|
||
let accordions = document.getElementsByClassName("accordion-btn");
|
||
|
||
for (let i = 0; i < accordions.length; i++) {
|
||
accordions[i].addEventListener("click", function() {
|
||
this.querySelector('.fal').classList.toggle("fa-plus");
|
||
this.querySelector('.fal').classList.toggle("fa-minus");
|
||
|
||
let panel = this.nextElementSibling;
|
||
panel.classList.toggle("panel-open");
|
||
if (panel.style.maxHeight) {
|
||
panel.style.maxHeight = null;
|
||
} else {
|
||
panel.style.maxHeight = panel.scrollHeight + "px";
|
||
}
|
||
});
|
||
}
|
||
</script> |