Files
tailShape/public/componets/faq/4_faq.html
2022-03-01 16:47:05 +06:00

96 lines
4.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./../../../dist/tailshape.css">
<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.8.2/dist/alpine.min.js" defer></script>
<title>FAQ 4</title>
</head>
<body>
<button class="dark_mode_button_custom_style" id="dark_mood_toogler">
d
</button>
<!-- faq 4 start -->
<section class="section_divider" id="faq_4">
<div>FAQ 4</div>
</section>
<section class="relative py-16 bg-white dark:bg-gray-800 min-w-screen animation-fade animation-delay">
<div class="container px-0 mx-auto sm:px-5">
<p class="mx-6 text-md font-bold text-left text-purple-500 uppercase sm:text-center sm:text-normal sm:font-bold">
Got a
Question? Weve got answers.</p>
<h3 class="mx-6 mt-1 text-xl font-bold text-left text-gray-800 dark:text-gray-300 sm:text-3xl md:text-5xl sm:text-center sm:mx-0">
Frequently Asked Questions</h3>
<div
class="w-full px-6 py-6 mx-auto mt-10 bg-white border border-gray-200 sm:px-8 md:px-12 sm:py-8 sm:rounded-lg sm:shadow md:w-2/3">
<h3 class="text-lg font-bold text-purple-500 sm:text-xl md:text-2xl">How does it work?</h3>
<p class="mt-2 text-base text-gray-600 sm:text-lg md:text-normal">Our platform works with your content to
provides
insights and metrics on how you can grow your business and scale your infastructure.</p>
</div>
<div
class="w-full px-6 py-6 mx-auto mt-10 bg-white border border-gray-200 sm:px-8 md:px-12 sm:py-8 sm:rounded-lg sm:shadow md:w-2/3">
<h3 class="text-lg font-bold text-purple-500 sm:text-xl md:text-2xl">Do you offer team pricing?</h3>
<p class="mt-2 text-base text-gray-600 sm:text-lg md:text-normal">Yes, we do! Team pricing is available for
any
plan. You can take advantage of 30% off for signing up for team pricing of 10 users or more.</p>
</div>
<div
class="w-full px-6 py-6 mx-auto mt-10 bg-white border border-gray-200 sm:px-8 md:px-12 sm:py-8 sm:rounded-lg sm:shadow md:w-2/3">
<h3 class="text-lg font-bold text-purple-500 sm:text-xl md:text-2xl">How do I make changes and configure my
site?
</h3>
<p class="mt-2 text-base text-gray-600 sm:text-lg md:text-normal">You can easily change your site settings
inside
of your site dashboard by clicking the top right menu and clicking the settings button.</p>
</div>
<div
class="w-full px-6 py-6 mx-auto mt-10 bg-white border border-gray-200 sm:px-8 md:px-12 sm:py-8 sm:rounded-lg sm:shadow md:w-2/3">
<h3 class="text-lg font-bold text-purple-500 sm:text-xl md:text-2xl">How do I add a custom domain?</h3>
<p class="mt-2 text-base text-gray-600 sm:text-lg md:text-normal">You can easily change your site settings
inside
of your site dashboard by clicking the top right menu and clicking the settings button.</p>
</div>
</div>
</section>
<!-- faq 4 end -->
<!-- start of script section -->
<script type="text/javascript">
let toogler = document.getElementById("dark_mood_toogler");
let doc_html_el = document.getElementsByTagName('html')[0];
doc_html_el.addEventListener('keyup',(e)=>{
// key 220 is the backward slash , need to press ctrl+ \ to activate or deactivate darkmode
if(e.ctrlKey && e.keyCode =='220'){
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
}
})
doc_html_el.addEventListener('keyup',(e)=>{
// key 191 is the forward slash , need to press ctrl+ / to show or hide the darkmode button
if(e.ctrlKey && e.keyCode =='191'){
toogler.style.display =='block'? toogler.style.display = 'none':toogler.style.display ='block';
}
})
toogler.addEventListener('click',()=>{
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
console.log(doc_html_el.className);
})
</script>
<!-- end of script section -->
</body>
</html>