HTML Import
                Add this link tag to your HTML head section to import Taizun Font:
                <link href="https://taizun.site/taizun.css"
                        rel="stylesheet">
                    
                CSS Import
                Add this import statement at the top of your CSS file to import Taizun Font:
                
                @import url('https://taizun.site/taizun.css');
                React Import
                Add this import statement to your React component to import Taizun Font:
                import
                        "https://taizun.site/taizun.css";
                Next.js Import
                Add this Head component to your Next.js page to import Taizun Font:
                <Head><link rel="stylesheet"
                        href="https://taizun.site/taizun.css" /></Head>
                    
                Vanilla JavaScript Import
                Add this JavaScript code to dynamically import Taizun Font:
                document.head.innerHTML += '<link rel="stylesheet"
                        href="https://taizun.site/taizun.css">';
                    
                Python Import
                Add this link tag to your Python HTML template to import Taizun Font:
                <link rel="stylesheet"
                        href="https://taizun.site/taizun.css">