Files
tailShape/public/componets/pricing/16_pricing.html
2022-03-01 16:47:05 +06:00

123 lines
6.0 KiB
HTML

<!DOCTYPE html>
<html lang="en" class="">
<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>Pricing 16</title>
</head>
<body>
<button class="dark_mode_button_custom_style" id="dark_mood_toogler">
d
</button>
<!-- pricing 16 start -->
<section class="section_divider" id="pricing_16">
<div>Pricing 16</div>
</section>
<section class="text-gray-600 body-font dark:bg-gray-800">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h1 class="sm:text-4xl text-3xl font-medium title-font mb-2 text-gray-900 dark:text-gray-300">Pricing</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base dark:text-gray-300">Banh mi cornhole echo park skateboard authentic crucifix neutra tilde lyft biodiesel artisan direct trade mumblecore 3 wolf moon twee</p>
</div>
<div class="lg:w-2/3 w-full mx-auto overflow-auto">
<table class="table-auto w-full text-left whitespace-no-wrap">
<thead>
<tr>
<th class="px-4 py-3 title-font tracking-wider font-medium text-gray-900 text-sm bg-gray-100 rounded-tl rounded-bl">Plan</th>
<th class="px-4 py-3 title-font tracking-wider font-medium text-gray-900 text-sm bg-gray-100">Speed</th>
<th class="px-4 py-3 title-font tracking-wider font-medium text-gray-900 text-sm bg-gray-100">Storage</th>
<th class="px-4 py-3 title-font tracking-wider font-medium text-gray-900 text-sm bg-gray-100">Price</th>
<th class="w-10 title-font tracking-wider font-medium text-gray-900 text-sm bg-gray-100 rounded-tr rounded-br"></th>
</tr>
</thead>
<tbody>
<tr>
<td class="px-4 py-3 dark:text-gray-300" >Start</td>
<td class="px-4 py-3 dark:text-gray-300">5 Mb/s</td>
<td class="px-4 py-3 dark:text-gray-300">15 GB</td>
<td class="px-4 py-3 text-lg text-gray-900 dark:text-gray-100">Free</td>
<td class="w-10 text-center">
<input name="plan" type="radio">
</td>
</tr>
<tr>
<td class="border-t-2 border-gray-200 dark:text-gray-300 px-4 py-3">Pro</td>
<td class="border-t-2 border-gray-200 dark:text-gray-300 px-4 py-3">25 Mb/s</td>
<td class="border-t-2 border-gray-200 dark:text-gray-300 px-4 py-3">25 GB</td>
<td class="border-t-2 border-gray-200 dark:text-gray-100 px-4 py-3 text-lg text-gray-900">$24</td>
<td class="border-t-2 border-gray-200 dark:text-gray-300 w-10 text-center">
<input name="plan" type="radio">
</td>
</tr>
<tr>
<td class="border-t-2 border-gray-200 dark:text-gray-300 px-4 py-3">Business</td>
<td class="border-t-2 border-gray-200 dark:text-gray-300 px-4 py-3">36 Mb/s</td>
<td class="border-t-2 border-gray-200 dark:text-gray-300 px-4 py-3">40 GB</td>
<td class="border-t-2 border-gray-200 dark:text-gray-100 px-4 py-3 text-lg text-gray-900">$50</td>
<td class="border-t-2 border-gray-200 dark:text-gray-300 w-10 text-center">
<input name="plan" type="radio">
</td>
</tr>
<tr>
<td class="border-t-2 border-b-2 border-gray-200 dark:text-gray-300 px-4 py-3">Exclusive</td>
<td class="border-t-2 border-b-2 border-gray-200 dark:text-gray-300 px-4 py-3">48 Mb/s</td>
<td class="border-t-2 border-b-2 border-gray-200 dark:text-gray-300 px-4 py-3">120 GB</td>
<td class="border-t-2 border-b-2 border-gray-200 dark:text-gray-100 px-4 py-3 text-lg text-gray-900">$72</td>
<td class="border-t-2 border-b-2 border-gray-200 dark:text-gray-300 w-10 text-center">
<input name="plan" type="radio">
</td>
</tr>
</tbody>
</table>
</div>
<div class="flex pl-4 mt-4 lg:w-2/3 w-full mx-auto">
<a class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0">Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
<button class="flex ml-auto text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded">Button</button>
</div>
</div>
</section>
<!-- pricing 16 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>