Phosphor Icons

Using CDN:
  1. 1. First, add the following `script` tag within the head section of your HTML document:

                    
    <script src="https://unpkg.com/@phosphor-icons/web"></script>
                    
                  
  2. 2. Now, you can use the icons in your project. Example:

                    
    <i class="ph ph-heart"></i>
                    
                  
Using Downloaded Files:
  1. 1. Download Phosphor icons and place the phosphor-icons.js file in the static folder of your project directory.

  2. 2. Add the following `script` tag within the head section of your HTML document:

                    
    <script src="./static/phosphor-icons.min.js"></script>
                    
                  
  3. 3. Now, you can use the icons in your project. Example:

                    
    <i class="ph ph-heart"></i>