font awesome and iconions font

A. Font awesome: <script src="https://kit.fontawesome.com/778a1c2377.js" crossorigin="anonymous"></script> <script src="https://kit.fontawesome.com/56cf9e5223.js" crossorigin="anonymous"></script>   B. Ionicons.com: <script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script> <script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>  

0 Comments

return json() data and fetch it in php

You can simply use the json_encode() function to return JSON response from a PHP script. Also, if you're passing JSON data to a JavaScript program, make sure set the Content-Type header. Let's take a…

0 Comments

setTimeInterval() in javascript

In JavaScript, a block of code can be executed in specified time intervals. These time intervals are called timing events. There are two methods for executing code at specific intervals.…

0 Comments

Membership plan bootstrap

<div class="columns">   <ul class="price">     <li class="header">Basic</li>     <li class="grey">$ 9.99 / year</li>     <li>10GB Storage</li>     <li>10 Emails</li>     <li>10 Domains</li>     <li>1GB Bandwidth</li>     <li class="grey"><a href="#" class="button">Sign Up</a></li>   </ul> </div> <style> /* Create three columns of equal width */ .columns {  …

0 Comments

css for checkbox and radio btn

<!-- Rectangular switch --> <label class="switch">   <input type="checkbox">   <span class="slider"></span> </label> <!-- Rounded switch --> <label class="switch">   <input type="checkbox">   <span class="slider round"></span> </label> <style> /* The switch - the box around the slider */ .switch {  …

0 Comments