如何使用HTML生成QR碼:簡易指南

如何使用HTML生成QR碼:簡易指南

能否使用HTML(超文本标记语言)生成QR码?

簡短的答案是肯定的,但僅使用HTML無法創建QR碼。您需要JavaScript或其他QR碼軟件來生成QR碼本身。

在這篇文章中,您將學習如何使用HTML和JavaScript創建QR碼,以及何時更適合使用高級QR碼生成器來進行編輯、追蹤和擴展等功能。

目錄

    1. 什麼是QR碼HTML產生器?
    2. 如何使用HTML和JavaScript生成QR碼
    3. HTML-based QR code generation的不足之處
    4. 為什麼你需要一個進階的HTML QR碼生成器?
    5. 登陸頁面QR碼:無代碼解決方案
    6. 如何創建一個HTML QR碼(無需編碼)
    7. 為什麼 QR TIGER 是最好的 QR 碼生成器與 HTML 代碼?
    8. 總結
    9. 常見問題

什麼是QR碼HTML產生器?

一個 HTML QR碼生成器 是一個基於網頁的解決方案,使用HTML和JavaScript或API在網頁上創建和顯示QR碼。

對於快速、簡便的QR碼生成,像QR TIGER這樣的在線平台讓您無需HTML編碼即可製作一個。

如何使用HTML和JavaScript生成QR碼

你可以使用HTML與一個小的JavaScript庫結合來創建QR碼。

記得, 超文字標記語言 是用來建立您的網頁,而JavaScript處理QR碼生成。

現在,讓我們找出如何使用這些工具來創建一個HTML QR碼。

第一步:創建一個HTML文件

Create HTML file

首先,您需要一個HTML來創建QR碼。從創建一個名為index.html的文件開始。這個文件將保存QR碼生成器的結構。

接下來,在您的文件中,添加一個文本輸入框,用戶可以輸入URL或文本,一個按鈕來生成QR碼,以及一個空白處顯示QR碼。在這裡,您也可以鏈接到一個實際生成QR碼的庫。

最後,您的HTML文件將看起來像這樣:

   

QR Code Generator

   

生成QR碼

   

   

   

   

第2步:添加JavaScript

Add the JavaScript

創建第二個名為script.js的文件。這個文件用於讀取用戶輸入並生成QR碼。

當第二個檔案被創建時,腳本會取得輸入的文本,清除任何現有的QR碼,並創建一個新的。

這是您的腳本文件將會看起來的方式:

生成QR碼的函數() {

const text = document.getElementById("qr-text").value.trim();

if (!text) {

alert("請輸入一些文字或網址");

return;

}

document.getElementById("qrcode").innerHTML = "";

new QRCode(document.getElementById("qrcode"), {

text: text,

寬度: 150,

高度: 150

});

{}

第三步:保存並打開文件

現在您應該將我們之前生成的兩個文件都保存在同一個文件夾中。接下來,在任何網頁瀏覽器中打開 index.html 文件。

現在,輸入一個網址或文字,然後點擊生成按鈕。

這就是使用HTML生成QR碼的方法。

HTML-based QR code generation的不足之處

Disadvantages of HTML-based code

考慮到使用HTML和JavaScript生成QR碼的複雜性,值得花點時間了解這種方法的不足之處。這將幫助您快速且自信地決定哪種方法最適合您的需求。

HTML本身無法生成QR碼。

單獨的 HTML 檔案無法生成 QR 碼,因為它只是一種標記語言。您需要將 HTML 與 JavaScript 函式庫或第三方 API(應用程式介面)結合起來,才能將 HTML 檔案轉換為 QR 碼。

JavaScript的知識是必需的。

在JavaScript中,即使是腳本中的小錯誤也可能導致整個過程出錯。這使得對JavaScript有良好的工作知識絕對必要。

有限的定制选项

使用HTML和JavaScript生成的QR碼提供非常有限的自定義選項。因此,您無法輕鬆地調整設計以符合您的品牌識別。

無分析或追蹤

當您使用HTML生成QR碼時,無法訪問分析或追踪功能。對於大規模品牌活動,這些見解對於保持完全控制並有效衡量表現至關重要。

HTML只能創建靜態QR碼

與專用的QR碼生成器不同,它提供動態QR碼,HTML只能創建靜態QR碼。因此,如果您需要稍後進行更改,您將不得不從頭開始重新生成QR碼。

安全限制

基於HTML的QR碼並不提供加密、存取控制、密碼保護或符合ISO認證等功能。因此,無法保證您嵌入的數據受到保護。

維護困難

如果您對編碼或程式設計不太熟悉,管理由HTML製作的QR碼可能會非常困難,因為每次更新都需要更改代碼、重新部署和測試。

為什麼你需要一個進階的HTML QR碼生成器?

使用專門的QR碼軟件,您可以創建QR碼,而無需編碼或技術專業知識。

它與自動化平台兼容並提供 QR碼API文件 開發人員可以在軟體應用程式中直接生成QR碼。

有些網站可以直接提供 HTML 代碼,這樣您就可以輕鬆地將您創建的 QR 碼嵌入到您的網站或任何網頁上,而不必煩惱編碼。

一個專業的QR碼生成器還提供完整的定制選項,讓您可以輕鬆設計符合品牌形象的QR碼。

此外,它支持動態QR碼,使您能夠在部署後更新其內容並實時監控其性能。

這些功能對於長期活動和持續的促銷活動尤其有價值,靈活性和控制是必不可少的。

登陸頁面QR碼:無代碼解決方案

Landing page QR code

首頁QR碼 是一種靈活且實用的方式,通過單次掃描便可分享適用於移動設備的內容。這是在高級QR碼軟件如QR TIGER中提供的解決方案。

這個QR碼打開的登陸頁面是直接在QR碼平台內部託管和管理的。

您可以設計頁面,加入您想要的文字、圖片、影片、連結、按鈕和其他互動元素,而無需撰寫任何一行程式碼。如果您想自行編寫一些程式碼,也可以使用“程式碼檢視”選項。

這使它成為行銷人員、商業專業人士和活動經理的理想解決方案,他們希望將他們的QR碼與品牌形象和溝通目標保持一致。

如何創建一個HTML QR碼(無需編碼)

按照以下簡單步驟創建一個無代碼QR碼來連接一個登陸頁面:

參觀一個 動態QR碼生成器 在線。

從解決方案儀表板中選擇H5 QR碼選項。

使用現有的網頁設計元素添加和設計您的H5頁面。

4. 選擇性: 如需直接編碼或編程,請切換到代碼視圖 。

一旦您的頁面準備好,請點擊生成以將HTML轉換為QR碼。

定制並下載 QR 碼,支援高品質的圖像格式,如 PNG、SVG 或 EPS。

查看HTML代碼,請點擊 嵌入QR碼 複製。

提醒: 在您的活動或網頁中使用QR碼之前,請始終測試以確保它在各種設備上運作順暢。

為什麼 QR TIGER 是最好的 QR 碼生成器,具有 HTML 代碼

有幾個先進的產生器可以讓您創建QR碼。但是當涉及到內置HTML代碼的時候,我們強烈推薦QR TIGER。

這是企業和開發人員作為其網站QR碼生成器的首選,原因如下:

  • 真正的平台創作: 允許您在平台內完全創建自定義QR碼登陸頁,而無需依賴獨立的網站、CMS或主機提供商。
  • 列印後仍可編輯 其動態QR碼用於登陸頁面,讓您隨時更新登陸頁面的內容,即使QR碼已經印刷或分發。
  • 無需技術專業知識: 一個基於視覺和分區的編輯器讓非技術人員可以輕鬆創建和管理登陸頁面的QR碼。
  • 簡單的API整合: API 文件 通過自動化整個過程,使在其他軟件應用程序中生成QR碼變得更快、更順暢和更具可擴展性。
  • 隨時隨地的HTML代碼: QR TIGER會自動生成HTML代碼,讓您可以將QR碼直接嵌入您的網站,而無需進行繁瑣的手動編碼。
  • 更大的品牌控制: 它提供對登陸頁和QR碼設計的完全控制,包括顏色、佈局和符合您品牌形象的CTA標籤。
  • 安全可靠的主機: QR TIGER 重視 數據安全 通過遵守ISO 27001、GDPR、CCPA和SSO標準,使其成為值得信賴的平台,適用於具有大規模、長期活動的公司。

總結

你已經知道如何使用HTML和JavaScript生成QR碼,以及它在功能和可擴展性方面存在的不足。

我們建議使用一個先進的QR碼生成器與HTML代碼,以使創建和管理您的QR碼變得簡單和無壓力。

你可以完全控制你的QR碼,無論是更新內容、自定義設計以符合你的品牌、隨時間追蹤效能,或將它們嵌入網站。 Free ebooks for QR codes

常見問題

我需要什麼軟體來編寫HTML?

對於HTML,你只需要一個簡單的文本編輯器,如記事本或TextEdit,或者更豐富功能的編輯器如VS Code。一旦文件以.html擴展名保存,你可以在任何網頁瀏覽器中打開它,如Chrome、Firefox或Safari,來查看它的外觀。

HTML的七個基本標籤是什麼?

一些最基本和常用的標籤包括,, </p><p>, </p><h1>, <p> 和 <a> . </a></p></h1><h3 id="toc_definition_of_terms"><a><b>術語定義 </b></a></h3><p><a><b>HTML </b>HTML 代表超文本標記語言。它是告訴網頁瀏覽器要顯示什麼內容以及如何組織的標準語言,例如文字、圖片、連結、按鈕和表單。 </a></p><p><a><b>JavaScript </b>一種編程語言,允許網頁對用戶操作做出反應,實時更新內容,並在不重新加載頁面的情況下執行邏輯。 </a></p><p><a><b>API </b>應用程式介面的縮寫是 Application Programming Interface。它是一組規則和工具,讓一個應用程式可以使用另一個應用程式的功能或數據,而不需要知道它是如何建立的。 </a><a class="blog-company-banner" href="https://www.qrcode-tiger.com" target="_blank"><img src="https://qrtiger-banners.s3.amazonaws.com/blog-banner-company-logo.jpg" style="width: 100%;" alt="Brands using QR codes" width height title></a></p></div></section></article></div></div></div><div class="footer"><div class="container"><div class="social-section"><div class="subscribe"><section>保持跟進</section><span class="footer-text footer-subscribe__desc">註冊我們的通訊,第一時間獲得促銷、更新和提示。</span><div class="input-group footer-subscribe__input"><input class="form-control" type="email" placeholder="您的email地址" name="email"/><div class="input-group-append"><span class="input-group-text pointer"><i class="qr-icons qr-send" aria-hidden="true"></i></span></div></div></div><div class="social-community"><span class="footer-text mb-2">加入社群</span><div class="social-icons"><a target="_blank" rel="noopener noreferrer" class="icon linkedin-icon" aria-label="跟隨我們: LinkedIn" href="https://www.linkedin.com/company/qrtiger/"><i class="qr-icons qr-linkedin" aria-hidden="true"></i></a><a target="_blank" rel="noopener noreferrer" class="icon" aria-label="跟隨我們: YouTube" href="https://www.youtube.com/c/QRTiger"><i class="qr-icons qr-youtube" aria-hidden="true"></i></a><a target="_blank" rel="noopener noreferrer" class="icon" aria-label="跟隨我們: Instagram" href="https://www.instagram.com/qrtiger"><i class="qr-icons qr-instagram" aria-hidden="true"></i></a><a target="_blank" rel="noopener noreferrer" class="icon" aria-label="跟隨我們: Facebook" href="https://www.facebook.com/QRTIGERS/"><i class="qr-icons qr-facebook" aria-hidden="true"></i></a><a target="_blank" rel="noopener noreferrer" class="icon" aria-label="跟隨我們: X" href="https://twitter.com/qrtigers"><i class="qr-icons qr-x-logo" aria-hidden="true"></i></a></div></div><div class="social-community download-app"><h4 class="footer-text">下載 QR TIGER 應用程式</h4><span class="footer-text mb-2">隨時製作和掃描QR碼</span><div class="download-buttons"><a href="https://apps.apple.com/us/app/qr-tiger-qr-code-generator/id1509675463"><img src="https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainFooter/appStore.webp" alt="Download on the App Store" width="139" height="46" loading="lazy" decoding="async"/></a><a href="https://play.google.com/store/apps/details?id=com.qrtiger&pli=1"><img src="https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainFooter/googlePlay.webp" alt="Get it on Google Play" width="155" height="46" loading="lazy" decoding="async"/></a></div></div></div><div class="resources-wrapper mt-5 mb-5"><div class="resources-header">資源</div><div class="row"><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/how-do-dynamic-qr-codes-work">動態QR碼是如何運作的?</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/how-does-a-multi-url-qr-code-works-and-can-benefit-your-business-smart-qr-code">多URL QR碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/digital-business-card-qr-code">數位名片 QR 碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/bulk-qr-code-generator">批量 QR 碼生成器</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/how-to-make-a-qr-code-of-an-image">如何為圖像製作 QR 碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/how-to-create-a-video-qr-code-">如何為視頻創建QR碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/how-to-make-a-qr-code-for-a-google-form">如何為 Google Form 創建 QR 碼?</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/qr-code-with-logo">如何製作帶有標誌的QR碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/track-qr-code-with-google-analytics">如何使用 Google Analytics 追蹤 QR 碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/how-to-make-your-qr-code-in-restaurant">如何製作餐廳菜單的QR碼</a></div></div><div class="col-md-6 col-lg-3 mb-1 mt-1"><div class="resource-item"><a class="text-white text-center" href="https://www.qrcode-tiger.com/zh-tw/file-qr-code-converter">QR 碼轉換器</a></div></div></div></div><div class="main-menu"><div class="section text-lg-left text-left"><div><label class="text-white">指南</label><ul><li class="faq"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/faq">常見問題</a></li><li class="contactUs"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/contact">聯絡我們</a></li><li class="helpCenter"><a class="text-white" target="_self" href="https://www.qrcode-tiger.com/zh-tw/blog/help-center">幫助中心</a></li></ul></div></div><div class="section text-lg-left text-right text-lg-left"><div><label class="text-white">支持</label><ul><li class="mailTo"><a class="text-white" target="_self" href="mailto:it@qrtiger.com">it@qrtiger.com</a></li></ul></div></div><div class="section text-lg-left text-left"><div><label class="text-white">公司</label><ul><li class="aboutUs"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/about">關於我們</a></li><li class="status"><a class="text-white" target="_blank" href="https://qrtiger.statuspage.io/">狀態</a></li><li class="enterpriseSolutions"><a class="text-white" target="_blank" href="https://enterprise.qrcode-tiger.com/">企業解決方案</a></li><li class="pricing"><a class="text-white" target="_self" href="https://www.qrcode-tiger.com/zh-tw/payment">價格設定</a></li></ul></div></div><div class="section text-lg-left text-right text-lg-left"><div><label class="text-white">條款</label><ul><li class="termsAgreements"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/terms-and-conditions">條款和條件</a></li><li class="termsOfAcceptableUse"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/term-acceptable-use">可接受使用條款</a></li><li class="privacyPolicy"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/privacy-policy">隱私政策</a></li><li class="cookiesPolicy"><a class="text-white" target="_blank" href="https://www.qrcode-tiger.com/zh-tw/cookies-policy">Cookies 政策</a></li></ul></div></div></div><div class="vtline"></div><div class="d-flex justify-content-center m-3"><a class="main-logo" href="/zh-tw"><img src="https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainHeader/qrtiger_logo_s.svg" alt="qr code generator" width="200" height="59" loading="lazy" decoding="async"/></a></div><div class="text-center copy-right">這個QR碼生成器是QR TIGER有限公司的註冊商標。<br/>'QR Code' 是 DENSO WAVE INCORPORATED 的商標。 © 2026 www.qrcode-tiger.com</div></div></div></div></div></div></div><script src="/_next/static/chunks/webpack-69f4bed0e31910ca.js" crossorigin="" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:I[12846,[],\"\"]\n4:I[4707,[],\"\"]\n7:I[36423,[],\"\"]\n8:I[59152,[\"1781\",\"static/chunks/app/%5Blocale%5D/(site)/layout-af53f9846188dc01.js\"],\"default\"]\nc:I[61060,[],\"\"]\n5:[\"locale\",\"zh-tw\",\"d\"]\n6:[\"slug\",\"how-to-generate-a-qr-code-using-html\",\"d\"]\nd:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L1\",null,{\"buildId\":\"YrSZSZLNudpXmkEm9U6dj\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"zh-tw\",\"how-to-generate-a-qr-code-using-html\"],\"initialTree\":[\"\",{\"children\":[[\"locale\",\"zh-tw\",\"d\"],{\"children\":[\"(cms)\",{\"children\":[[\"slug\",\"how-to-generate-a-qr-code-using-html\",\"d\"],{\"children\":[\"__PAGE__\",{}]}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[[\"locale\",\"zh-tw\",\"d\"],{\"children\":[\"(cms)\",{\"children\":[[\"slug\",\"how-to-generate-a-qr-code-using-html\",\"d\"],{\"children\":[\"__PAGE__\",{},[[\"$L2\",\"$L3\",null],null],null]},[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"$5\",\"children\",\"(cms)\",\"children\",\"$6\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[null,[[[\"$\",\"link\",null,{\"rel\":\"preload\",\"href\":\"/static/assets/styles/bundles/site.bundle.css?v=1789534152205\",\"as\":\"style\"}],[\"$\",\"link\",null,{\"rel\":\"stylesheet\",\"href\":\"/static/assets/styles/bundles/site.bundle.css?v=1789534152205\",\"precedence\":\"default\"}],[\"$\",\"$L8\",null,{\"href\":\"/static/assets/styles/bundles/site.bundle.css?v=1789534152205\"}]],[[\"$\",\"link\",null,{\"rel\":\"preload\",\"href\":\"/static/assets/styles/bundles/blog.bundle.css?v=1789534152205\",\"as\":\"style\"}],[\"$\",\"link\",null,{\"rel\":\"stylesheet\",\"href\":\"/static/assets/styles/bundles/blog.bundle.css?v=1789534152205\",\"precedence\":\"default\"}],[\"$\",\"$L8\",null,{\"href\":\"/static/assets/styles/bundles/blog.bundle.css?v=1789534152205\"}]],[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"$5\",\"children\",\"(cms)\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]]],null],null]},[[null,\"$L9\"],null],null]},[[null,\"$La\"],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$Lb\"],\"globalErrorComponent\":\"$c\",\"missingSlots\":\"$Wd\"}]\n"])</script><script>self.__next_f.push([1,"f:I[6034,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"9708\",\"static/chunks/9708-1ee31b349ca7cee7.js\",\"6851\",\"static/chunks/6851-efeff18a05a0a715.js\",\"6773\",\"static/chunks/6773-1509e69c8ea411a9.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"39\",\"static/chunks/39-b2c68a85691e2a75.js\",\"8854\",\"static/chunks/8854-324ed598a153b6a1.js\",\"3500\",\"static/chunks/app/%5Blocale%5D/(site)/page-8302dc3f65074d52.js\"],\"default\"]\n10:I[34238,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8003\",\"static/chunks/8003-f160b9a4f1f5a751.js\",\"4600\",\"static/chunks/4600-8843794cf620750b.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"3185\",\"static/chunks/app/layout-d240534d2b341f2e.js\"],\"default\"]\n11:I[74196,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8003\",\"static/chunks/8003-f160b9a4f1f5a751.js\",\"4600\",\"static/chunks/4600-8843794cf620750b.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"3185\",\"static/chunks/app/layout-d240534d2b341f2e.js\"],\"default\"]\n12:I[88003,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8003\",\"static/chunks/8003-f160b9a4f1f5a751.js\",\"4600\",\"static/chunks/4600-8843794cf620750b.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"3185\",\"static/chunks/app/layout-d240534d2b341f2e.js\"],\"\"]\n13:I[37187,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd3778"])</script><script>self.__next_f.push([1,"63.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"9708\",\"static/chunks/9708-1ee31b349ca7cee7.js\",\"6851\",\"static/chunks/6851-efeff18a05a0a715.js\",\"6773\",\"static/chunks/6773-1509e69c8ea411a9.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"39\",\"static/chunks/39-b2c68a85691e2a75.js\",\"8854\",\"static/chunks/8854-324ed598a153b6a1.js\",\"3500\",\"static/chunks/app/%5Blocale%5D/(site)/page-8302dc3f65074d52.js\"],\"default\"]\n14:I[84704,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"default\"]\n15:I[84393,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"1449\",\"static/chunks/1449-0ad14b25061f0233.js\",\"1203\",\"static/chunks/app/%5Blocale%5D/layout-fdcf5a9c3efff51d.js\"],\"default\"]\n16:\"$Sreact.suspense\"\n17:I[26766,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"1449\",\"static/chunks/1449-0ad14b25061f0233.js\",\"1203\",\"static/chunks/app/%5Blocale%5D/layout-fdcf5a9c3efff51d.js\"],\"default\"]\n18:I[96743,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/ch"])</script><script>self.__next_f.push([1,"unks/8322-b82229900867ab74.js\",\"1449\",\"static/chunks/1449-0ad14b25061f0233.js\",\"1203\",\"static/chunks/app/%5Blocale%5D/layout-fdcf5a9c3efff51d.js\"],\"default\"]\ne:T3e8d,"])</script><script>self.__next_f.push([1,"@font-face {\n font-family: 'Poppins';\n font-style: normal;\n font-weight: 600;\n font-display: swap;\n src: url(/static/assets/fonts/Poppins/Poppins-SemiBold.woff2) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\n@font-face {\n font-family: 'Poppins';\n font-style: normal;\n font-weight: 500;\n font-display: swap;\n src: url(/static/assets/fonts/Poppins/Poppins-Medium.woff2) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,\n U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\n@font-face {\n font-family: 'Poppins';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(/static/assets/fonts/Poppins/Poppins-Regular.woff2) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\n@font-face {\n font-family: 'Poppins';\n font-style: normal;\n font-weight: 700;\n font-display: swap;\n src: url(/static/assets/fonts/Poppins/Poppins-Bold.woff2) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\n@font-face {\n font-family: 'Lato';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\n@font-face {\n font-family: 'QrTiger';\n src: url('/static/assets/fonts/QrTiger/fonts/QrTiger.eot?y7z8h7');\n src: url('/static/assets/fonts/QrTiger/fonts/QrTiger.eot?y7z8h7#iefix') format('embedded-opentype'),\n url('/static/assets/fonts/QrTiger/fonts/QrTiger.ttf?y7z8h7') format('truetype'),\n url('/static/assets/fonts/QrTiger/fonts/QrTiger.woff?y7z8h7') format('woff'),\n url('/static/assets/fonts/QrTiger/fonts/QrTiger.svg?y7z8h7#QrTiger') format('svg');\n font-weight: normal;\n font-style: normal;\n font-display: swap;\n ascent-override: 90%;\n descent-override: 10%;\n line-gap-override: 0%;\n}\n\n[class^=\"qr-\"], [class*=\" qr-\"] {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: 'QrTiger' !important;\n speak: never;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.qr-warning:before {\n content: \"\\e900\";\n}\n.qr-stoplight_logo:before {\n content: \"\\e901\";\n}\n.qr-email:before {\n content: \"\\e902\";\n}\n.qr-instagram:before {\n content: \"\\e903\";\n}\n.qr-pdf:before {\n content: \"\\e904\";\n}\n.qr-html:before {\n content: \"\\e905\";\n}\n.qr-facebook-thin:before {\n content: \"\\e906\";\n}\n.qr-email1:before {\n content: \"\\e907\";\n}\n.qr-app-store:before {\n content: \"\\e908\";\n}\n.qr-facebook-like:before {\n content: \"\\e909\";\n}\n.qr-pinterest:before {\n content: \"\\e90a\";\n}\n.qr-mp3:before {\n content: \"\\e90b\";\n}\n.qr-vcard:before {\n content: \"\\e90c\";\n}\n.qr-url:before {\n content: \"\\e90d\";\n}\n.qr-text:before {\n content: \"\\e90e\";\n}\n.qr-event:before {\n content: \"\\e90f\";\n}\n.qr-youtube:before {\n content: \"\\e910\";\n}\n.qr-star-inside-circle:before {\n content: \"\\e911\";\n}\n.qr-open-menu:before {\n content: \"\\e912\";\n}\n.qr-twitter:before {\n content: \"\\e913\";\n}\n.qr-caret-up:before {\n content: \"\\e914\";\n}\n.qr-caret-down:before {\n content: \"\\e915\";\n}\n.qr-sns:before {\n content: \"\\e916\";\n}\n.qr-wechat:before {\n content: \"\\e917\";\n}\n.qr-multi:before {\n content: \"\\e918\";\n}\n.qr-search:before {\n content: \"\\e919\";\n}\n.qr-alipay:before {\n content: \"\\e91a\";\n}\n.qr-social-media:before {\n content: \"\\e91b\";\n}\n.qr-forms:before {\n content: \"\\e91c\";\n}\n.qr-check-circle:before {\n content: \"\\e91d\";\n}\n.qr-more:before {\n content: \"\\e91e\";\n}\n.qr-line:before {\n content: \"\\e91f\";\n}\n.qr-tiktok:before {\n content: \"\\e920\";\n}\n.qr-close:before {\n content: \"\\e921\";\n}\n.qr-question-circle:before {\n content: \"\\e922\";\n}\n.qr-angle-down:before {\n content: \"\\e923\";\n}\n.qr-angle-up:before {\n content: \"\\e924\";\n}\n.qr-plus:before {\n content: \"\\e925\";\n}\n.qr-user:before {\n content: \"\\e926\";\n}\n.qr-qrcode:before {\n content: \"\\e927\";\n}\n.qr-double-arrow-left:before {\n content: \"\\e928\";\n}\n.qr-double-arrow-right:before {\n content: \"\\e929\";\n}\n.qr-question:before {\n content: \"\\e92a\";\n}\n.qr-paint-brush:before {\n content: \"\\e92b\";\n}\n.qr-trash:before {\n content: \"\\e92c\";\n}\n.qr-linkedin:before {\n content: \"\\e92d\";\n}\n.qr-wechat-main:before {\n content: \"\\e92e\";\n}\n.qr-whatsapp:before {\n content: \"\\e92f\";\n}\n.qr-tumblr:before {\n content: \"\\e930\";\n}\n.qr-messenger:before {\n content: \"\\e931\";\n}\n.qr-reddit:before {\n content: \"\\e932\";\n}\n.qr-qq:before {\n content: \"\\e933\";\n}\n.qr-medium:before {\n content: \"\\e934\";\n}\n.qr-yelp:before {\n content: \"\\e935\";\n}\n.qr-quora:before {\n content: \"\\e936\";\n}\n.qr-meetup:before {\n content: \"\\e937\";\n}\n.qr-snapchat:before {\n content: \"\\e938\";\n}\n.qr-check:before {\n content: \"\\e939\";\n}\n.qr-exchange:before {\n content: \"\\e93a\";\n}\n.qr-facebook:before {\n content: \"\\e93b\";\n}\n.qr-play:before {\n content: \"\\e93c\";\n}\n.qr-kakao-talk:before {\n content: \"\\e93d\";\n}\n.qr-viber:before {\n content: \"\\e93e\";\n}\n.qr-high-signal:before {\n content: \"\\e93f\";\n}\n.qr-telegram:before {\n content: \"\\e940\";\n}\n.qr-twitch:before {\n content: \"\\e941\";\n}\n.qr-phone-call:before {\n content: \"\\e942\";\n}\n.qr-global:before {\n content: \"\\e943\";\n}\n.qr-postmates:before {\n content: \"\\e944\";\n}\n.qr-foodpanda:before {\n content: \"\\e945\";\n}\n.qr-ebay:before {\n content: \"\\e946\";\n}\n.qr-rakuten:before {\n content: \"\\e947\";\n}\n.qr-menulog:before {\n content: \"\\e948\";\n}\n.qr-podcast:before {\n content: \"\\e949\";\n}\n.qr-zomato:before {\n content: \"\\e94a\";\n}\n.qr-shopify:before {\n content: \"\\e94b\";\n}\n.qr-ubereats:before {\n content: \"\\e94c\";\n}\n.qr-etsy:before {\n content: \"\\e94d\";\n}\n.qr-bilibili:before {\n content: \"\\e94e\";\n}\n.qr-streamlabs:before {\n content: \"\\e94f\";\n}\n.qr-soundcloud:before {\n content: \"\\e950\";\n}\n.qr-patreon:before {\n content: \"\\e951\";\n}\n.qr-grubhub:before {\n content: \"\\e952\";\n}\n.qr-doordash:before {\n content: \"\\e953\";\n}\n.qr-kuaishou:before {\n content: \"\\e954\";\n}\n.qr-douban:before {\n content: \"\\e955\";\n}\n.qr-account:before {\n content: \"\\e956\";\n}\n.qr-settings:before {\n content: \"\\e957\";\n}\n.qr-refresh:before {\n content: \"\\e958\";\n}\n.qr-swiggy:before {\n content: \"\\e959\";\n}\n.qr-justeat:before {\n content: \"\\e95a\";\n}\n.qr-deliveroo:before {\n content: \"\\e95b\";\n}\n.qr-glovo:before {\n content: \"\\e95c\";\n}\n.qr-time:before {\n content: \"\\e95d\";\n}\n.qr-notification:before {\n content: \"\\e95e\";\n}\n.qr-lock:before {\n content: \"\\e95f\";\n}\n.qr-zhihu:before {\n content: \"\\e960\";\n}\n.qr-xiao-hongsu:before {\n content: \"\\e961\";\n}\n.qr-weibo:before {\n content: \"\\e962\";\n}\n.qr-wechat-mini:before {\n content: \"\\e963\";\n}\n.qr-soul:before {\n content: \"\\e964\";\n}\n.qr-himalaya:before {\n content: \"\\e965\";\n}\n.qr-meituan:before {\n content: \"\\e966\";\n}\n.qr-eleme:before {\n content: \"\\e967\";\n}\n.qr-pingduoduo:before {\n content: \"\\e968\";\n}\n.qr-jingdong:before {\n content: \"\\e969\";\n}\n.qr-taobao:before {\n content: \"\\e96a\";\n}\n.qr-xuexi:before {\n content: \"\\e96b\";\n}\n.qr-qq-music:before {\n content: \"\\e96c\";\n}\n.qr-k-song:before {\n content: \"\\e96d\";\n}\n.qr-hibixin:before {\n content: \"\\e96e\";\n}\n.qr-dianping:before {\n content: \"\\e96f\";\n}\n.qr-wechat-channel:before {\n content: \"\\e970\";\n}\n.qr-amazon:before {\n content: \"\\e971\";\n}\n.qr-applemusic:before {\n content: \"\\e972\";\n}\n.qr-yogiyo:before {\n content: \"\\e973\";\n}\n.qr-send:before {\n content: \"\\e974\";\n}\n.qr-open-box:before {\n content: \"\\e975\";\n}\n.qr-left-arrow:before {\n content: \"\\e976\";\n}\n.qr-xianyu:before {\n content: \"\\e977\";\n}\n.qr-tick-inside-circle:before {\n content: \"\\e978\";\n}\n.qr-reward:before {\n content: \"\\e979\";\n}\n.qr-template:before {\n content: \"\\e97a\";\n}\n.qr-location:before {\n content: \"\\e97b\";\n}\n.qr-fax:before {\n content: \"\\e97c\";\n}\n.qr-brief-case:before {\n content: \"\\e97d\";\n}\n.qr-phone:before {\n content: \"\\e97e\";\n}\n.qr-form:before {\n content: \"\\e97f\";\n}\n.qr-add-user:before {\n content: \"\\e980\";\n}\n.qr-documentation:before {\n content: \"\\e981\";\n}\n.qr-kesong:before {\n content: \"\\e982\";\n}\n.qr-cloud-computing:before {\n content: \"\\e983\";\n}\n.qr-rise:before {\n content: \"\\e984\";\n}\n.qr-box:before {\n content: \"\\e985\";\n}\n.qr-bolt:before {\n content: \"\\e986\";\n}\n.qr-shield:before {\n content: \"\\e987\";\n}\n.qr-circle-check-thin:before {\n content: \"\\e988\";\n}\n.qr-share:before {\n content: \"\\e989\";\n}\n.qr-link:before {\n content: \"\\e98a\";\n}\n.qr-hot-coffee:before {\n content: \"\\e98b\";\n}\n.qr-speech-bubble:before {\n content: \"\\e98c\";\n}\n.qr-shopping-bag:before {\n content: \"\\e98d\";\n}\n.qr-music:before {\n content: \"\\e98e\";\n}\n.qr-wifi:before {\n content: \"\\e98f\";\n}\n.qr-paper:before {\n content: \"\\e990\";\n}\n.qr-user-profile:before {\n content: \"\\e991\";\n}\n.qr-facebook-circle:before {\n content: \"\\e992\";\n}\n.qr-frame:before {\n content: \"\\e993\";\n}\n.qr-layout:before {\n content: \"\\e994\";\n}\n.qr-sliders:before {\n content: \"\\e995\";\n}\n.qr-image:before {\n content: \"\\e996\";\n}\n.qr-two-arrows-pointing-right-and-left:before {\n content: \"\\e997\";\n}\n.qr-lock-no-key-hold:before {\n content: \"\\e998\";\n}\n.qr-arrow-down-in-circle:before {\n content: \"\\e999\";\n}\n.qr-scan:before {\n content: \"\\e99a\";\n}\n.qr-star:before {\n content: \"\\e99b\";\n}\n.qr-embed-other:before {\n content: \"\\e99c\";\n}\n.qr-embed-video:before {\n content: \"\\e99d\";\n}\n.qr-meta-tags:before {\n content: \"\\e99e\";\n}\n.qr-store-hours:before {\n content: \"\\e99f\";\n}\n.qr-eyes:before {\n content: \"\\e9a0\";\n}\n.qr-pattern:before {\n content: \"\\e9a1\";\n}\n.qr-template-frame:before {\n content: \"\\e9a2\";\n}\n.qr-angle-right:before {\n content: \"\\e9a3\";\n}\n.qr-angle-left:before {\n content: \"\\e9a4\";\n}\n.qr-uber:before {\n content: \"\\e9a5\";\n}\n.qr-exclamation-circle:before {\n content: \"\\e9a6\";\n}\n.qr-circle-check-regular:before {\n content: \"\\e9a7\";\n}\n.qr-plus-circle:before {\n content: \"\\e9a8\";\n}\n.qr-colors:before {\n content: \"\\e9a9\";\n}\n.qr-logo:before {\n content: \"\\e9aa\";\n}\n.qr-close-circle:before {\n content: \"\\e9ab\";\n}\n.qr-trashcan:before {\n content: \"\\e9ac\";\n}\n.qr-arrow:before {\n content: \"\\e9ad\";\n}\n.qr-location-solid:before {\n content: \"\\e9ae\";\n}\n.qr-lock-circle:before {\n content: \"\\e9af\";\n}\n.qr-show-more:before {\n content: \"\\e9b0\";\n}\n.qr-register:before {\n content: \"\\e9b1\";\n}\n.qr-login:before {\n content: \"\\e9b2\";\n}\n.qr-user-add:before {\n content: \"\\e9b3\";\n}\n.qr-dashboard:before {\n content: \"\\e9b4\";\n}\n.qr-logout:before {\n content: \"\\e9b5\";\n}\n.qr-sms:before {\n content: \"\\e9b6\";\n}\n.qr-event2:before {\n content: \"\\e9b7\";\n}\n.qr-padlock:before {\n content: \"\\e9b8\";\n}\n.qr-profile-stack:before {\n content: \"\\e9b9\";\n}\n.qr-huawei:before {\n content: \"\\e9ba\";\n}\n.qr-apple:before {\n content: \"\\e9bb\";\n}\n.qr-android:before {\n content: \"\\e9bc\";\n}\n.qr-billing:before {\n content: \"\\e9bd\";\n}\n.qr-x-logo:before {\n content: \"\\e9be\";\n}\n.qr-micro:before {\n content: \"\\e9bf\";\n}\n.qr-pieces:before {\n content: \"\\e9c0\";\n}\n.qr-ebook:before {\n content: \"\\e9c1\";\n}\n.qr-edit-comment:before {\n content: \"\\e9c2\";\n}\n.qr-tiger:before {\n content: \"\\e9c3\";\n}\n.qr-group:before {\n content: \"\\e9c4\";\n}\n.qr-clound:before {\n content: \"\\e9c5\";\n}\n.qr-stacks:before {\n content: \"\\e9c6\";\n}\n.qr-frame-code:before {\n content: \"\\e9c7\";\n}\n.qr-audio:before {\n content: \"\\e9c8\";\n}\n.qr-facebook-solid:before {\n content: \"\\e9c9\";\n}\n.qr-share-link:before {\n content: \"\\e9ca\";\n}\n.qr-building:before {\n content: \"\\e9cb\";\n}\n.qr-gs1-link:before {\n content: \"\\e9cc\";\n}\n.qr-multi-url-v2:before {\n content: \"\\e9cd\";\n}\n.qr-url-v2:before {\n content: \"\\e9ce\";\n}\n.qr-event-v2:before {\n content: \"\\e9cf\";\n}\n.qr-text-v2:before {\n content: \"\\e9d0\";\n}\n.qr-menu-v2:before {\n content: \"\\e9d1\";\n}\n.qr-link-page:before {\n content: \"\\e9d2\";\n}\n.qr-email-v2:before {\n content: \"\\e9d3\";\n}\n.qr-file-v2:before {\n content: \"\\e9d4\";\n}\n.qr-landing-page:before {\n content: \"\\e9d5\";\n}\n.qr-wifi-v2:before {\n content: \"\\e9d6\";\n}\n.qr-sms-v2:before {\n content: \"\\e9d7\";\n}\n.qr-youtube-v2:before {\n content: \"\\e9d8\";\n}\n.qr-mp3-v2:before {\n content: \"\\e9d9\";\n}\n.qr-google-form:before {\n content: \"\\e9da\";\n}\n.qr-appstore-v2:before {\n content: \"\\e9db\";\n}\n.qr-location-v2:before {\n content: \"\\e9dc\";\n}\n.qr-vcard-v2:before {\n content: \"\\e9dd\";\n}\n.qr-pinterest-v2:before {\n content: \"\\e9de\";\n}\n.qr-tiktok-v2:before {\n content: \"\\e9df\";\n}\n.qr-instagram-v2:before {\n content: \"\\e9e0\";\n}\n.qr-facebook-v2:before {\n content: \"\\e9e1\";\n}\n.qr-x-logo-v2:before {\n content: \"\\e9e2\";\n}\n.qr-sms1:before {\n content: \"\\e9e3\";\n}\n.qr-gs1:before {\n content: \"\\e9e4\";\n}\n.qr-url1:before {\n content: \"\\e9e5\";\n}\n.qr-text-v3:before {\n content: \"\\e9e6\";\n}\n.qr-app-store-v3:before {\n content: \"\\e9e7\";\n}\n.qr-email-v3:before {\n content: \"\\e9e8\";\n}\n.qr-event-v3:before {\n content: \"\\e9e9\";\n}\n.qr-facebook-v3:before {\n content: \"\\e9ea\";\n}\n.qr-file:before {\n content: \"\\e9eb\";\n}\n.qr-google-form-v3:before {\n content: \"\\e9ec\";\n}\n.qr-instagram-v3:before {\n content: \"\\e9ed\";\n}\n.qr-landing-page-v3:before {\n content: \"\\e9ee\";\n}\n.qr-link-page-v3:before {\n content: \"\\e9ef\";\n}\n.qr-location-v3:before {\n content: \"\\e9f0\";\n}\n.qr-hot-coffee-v3:before {\n content: \"\\e9f1\";\n}\n.qr-music-v3:before {\n content: \"\\e9f2\";\n}\n.qr-murl:before {\n content: \"\\e9f3\";\n}\n.qr-pinterest-v3:before {\n content: \"\\e9f4\";\n}\n.qr-code:before {\n content: \"\\e9f5\";\n}\n.qr-tiger-v3:before {\n content: \"\\e9f6\";\n}\n.qr-sepa:before {\n content: \"\\e9f7\";\n}\n.qr-tiktok1:before {\n content: \"\\e9f8\";\n}\n.qr-vcard-v3:before {\n content: \"\\e9f9\";\n}\n.qr-wifi-v3:before {\n content: \"\\e9fa\";\n}\n.qr-x:before {\n content: \"\\e9fb\";\n}\n.qr-youtube-v3:before {\n content: \"\\e9fc\";\n}\n.qr-setting-v2:before {\n content: \"\\e9fd\";\n}\n.qr-video:before {\n content: \"\\e9fe\";\n}\n.qr-scan-check:before {\n content: \"\\e9ff\";\n}\n.qr-scan-chart:before {\n content: \"\\ea00\";\n}\n.qr-scan-settings:before {\n content: \"\\ea01\";\n}\n.qr-spotify:before {\n content: \"\\ea02\";\n}\n.qr-rounded-plus:before {\n content: \"\\ea03\";\n}\n.qr-rounded-minus:before {\n content: \"\\ea04\";\n}\n.qr-versus:before {\n content: \"\\ea05\";\n}\n.qr-neutral:before {\n content: \"\\ea06\";\n}\n.qr-dislike:before {\n content: \"\\ea07\";\n}\n.qr-like:before {\n content: \"\\ea08\";\n}\n.qr-color-picker:before {\n content: \"\\ea09\";\n}\n.qr-bulb:before {\n content: \"\\ea0a\";\n}\n.qr-eye:before {\n content: \"\\ea0b\";\n}\n.qr-print:before {\n content: \"\\ea0c\";\n}\n.qr-gift:before {\n content: \"\\ea0d\";\n}\n.qr-scissors:before {\n content: \"\\ea0e\";\n}\n.qr-diamond:before {\n content: \"\\ea0f\";\n}\n.qr-secure-shield:before {\n content: \"\\ea10\";\n}\n.qr-insecure-shield:before {\n content: \"\\ea11\";\n}\n.qr-email-notify:before {\n content: \"\\ea12\";\n}\n.qr-speed-meter:before {\n content: \"\\ea13\";\n}\n.qr-check-shield:before {\n content: \"\\ea14\";\n}\n.qr-slash-user:before {\n content: \"\\ea15\";\n}\n.qr-increase:before {\n content: \"\\ea16\";\n}\n.qr-ar:before {\n content: \"\\ea17\";\n}\n.qr-building-v2:before {\n content: \"\\ea18\";\n}\n.qr-business-report:before {\n content: \"\\ea19\";\n}\n.qr-bar-chart:before {\n content: \"\\ea1a\";\n}\n.qr-offer:before {\n content: \"\\ea1b\";\n}\n.qr-plug:before {\n content: \"\\ea1c\";\n}\n.qr-store:before {\n content: \"\\ea1d\";\n}\n.qr-grabfood:before {\n content: \"\\ea1e\";\n}\n.qr-card:before {\n content: \"\\ea1f\";\n}\n.qr-canvas-pencil:before {\n content: \"\\ea20\";\n}\n.qr-microscope:before {\n content: \"\\ea21\";\n}\n.qr-measuring-tape:before {\n content: \"\\ea22\";\n}\n.qr-touch:before {\n content: \"\\ea23\";\n}\n.qr-arrow-choose:before {\n content: \"\\ea24\";\n}\n.qr-shapes:before {\n content: \"\\ea25\";\n}\n.qr-outlined-star:before {\n content: \"\\ea26\";\n}\n.qr-checklist:before {\n content: \"\\ea27\";\n}\n.qr-circle:before {\n content: \"\\ea28\";\n}\n.qr-pip:before {\n content: \"\\ea2a\";\n}\n.qr-google-review:before {\n content: \"\\ea29\";\n}"])</script><script>self.__next_f.push([1,"a:[\"$\",\"html\",null,{\"lang\":\"zh-tw\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"manifest\",\"href\":\"/static/favicon/manifest.json\"}],[\"$\",\"link\",null,{\"rel\":\"shortcut icon\",\"href\":\"/static/favicon/favicon.ico\"}],[\"$\",\"meta\",null,{\"name\":\"mobile-web-app-capable\",\"content\":\"yes\"}],[\"$\",\"meta\",null,{\"httpEquiv\":\"X-UA-Compatible\",\"content\":\"IE=edge\"}],[\"$\",\"meta\",null,{\"name\":\"apple-itunes-app\",\"content\":\"app-id=id1509675463\"}],[\"$\",\"meta\",null,{\"name\":\"google-play-app\",\"content\":\"app-id=com.qrtiger\"}],[\"$\",\"link\",null,{\"rel\":\"apple-touch-icon\",\"href\":\"/static/favicon/icon.png\"}],[\"$\",\"link\",null,{\"rel\":\"android-touch-icon\",\"href\":\"/static/favicon/icon.png\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com\",\"crossOrigin\":\"\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.gstatic.com\",\"crossOrigin\":\"anonymous\"}],[[\"$\",\"link\",\"preload-/static/assets/fonts/Poppins/Poppins-Regular.woff2\",{\"rel\":\"preload\",\"href\":\"/static/assets/fonts/Poppins/Poppins-Regular.woff2\",\"as\":\"font\",\"type\":\"font/woff2\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",\"preload-/static/assets/fonts/Poppins/Poppins-Bold.woff2\",{\"rel\":\"preload\",\"href\":\"/static/assets/fonts/Poppins/Poppins-Bold.woff2\",\"as\":\"font\",\"type\":\"font/woff2\",\"crossOrigin\":\"anonymous\"}]],[\"$\",\"style\",null,{\"id\":\"critical-fonts-inline\",\"dangerouslySetInnerHTML\":{\"__html\":\"$e\"}}],[\"$\",\"link\",null,{\"rel\":\"stylesheet\",\"href\":\"/static/assets/fonts/fontface.css\",\"media\":\"print\",\"id\":\"extended-fontface-css\",\"suppressHydrationWarning\":true}],[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n (function () {\\n function activateDeferredStylesheet(id) {\\n var link = document.getElementById(id);\\n if (!link) return;\\n link.onload = function () { this.media = \\\"all\\\"; };\\n if (link.sheet) link.media = \\\"all\\\";\\n }\\n activateDeferredStylesheet(\\\"extended-fontface-css\\\");\\n })();\\n \"}}],[\"$\",\"noscript\",null,{\"children\":[\"$\",\"link\",null,{\"rel\":\"stylesheet\",\"href\":\"/static/assets/fonts/fontface.css\"}]}],[[\"$\",\"meta\",null,{\"name\":\"subject\",\"content\":\"Qrtiger\"}],[\"$\",\"meta\",null,{\"name\":\"copyright\",\"content\":\"Qrtiger\"}],[\"$\",\"meta\",null,{\"name\":\"language\",\"content\":\"EN\"}],[\"$\",\"meta\",null,{\"name\":\"author\",\"content\":\"Benjamin Claeys, info@qrtiger.com\"}],[\"$\",\"meta\",null,{\"name\":\"url\",\"content\":\"https://qrcode-tiger.com\"}],false,[\"$\",\"meta\",null,{\"name\":\"facebook-domain-verification\",\"content\":\"tctmbaunwrxf1ru5bbwf8c85wcmpbl\"}]],[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n window.dataLayer = window.dataLayer || [];\\n \"}}]]}],[\"$\",\"body\",null,{\"children\":[[\"$\",\"$Lf\",null,{}],[\"$\",\"$L10\",null,{\"children\":[\"$\",\"$L11\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}],[\"$\",\"$L12\",null,{\"id\":\"ahrefs-analytics\",\"strategy\":\"lazyOnload\",\"src\":\"https://analytics.ahrefs.com/analytics.js\",\"data-key\":\"kV0BskPB0ph96ZxJ/l9ygg\"}],[\"$\",\"$L13\",null,{\"containerId\":\"GTM-M753FHX\"}]]}]]}]\n"])</script><script>self.__next_f.push([1,"9:[\"$\",\"$L14\",null,{\"locale\":\"zh-tw\",\"messages\":{\"common\":{\"app\":{\"containers\":{\"LocaleToggle\":{\"af\":\"af\",\"afName\":\"Afrikaans\",\"ar\":\"ar\",\"arName\":\"العربية\",\"bn\":\"bn\",\"bnName\":\"বাংলা\",\"cn\":\"cn\",\"cnName\":\"简体中文\",\"cs\":\"cs\",\"csName\":\"Czech\",\"da\":\"da\",\"daName\":\"Dansk\",\"de\":\"de\",\"deName\":\"Deutsch\",\"el\":\"el\",\"elName\":\"Ελληνικά\",\"en\":\"en\",\"enName\":\"Eng\",\"es\":\"es\",\"esName\":\"Español\",\"fi\":\"fi\",\"fiName\":\"Suomi\",\"fr\":\"fr\",\"frName\":\"Français\",\"hi\":\"hi\",\"hiName\":\"हिन्दी\",\"hu\":\"hu\",\"huName\":\"Magyar\",\"id\":\"id\",\"idName\":\"Indonesia\",\"it\":\"it\",\"itName\":\"Italiano\",\"ja\":\"ja\",\"jaName\":\"日本語\",\"jv\":\"jv\",\"jvName\":\"Basa Jawa\",\"ko\":\"ko\",\"koName\":\"한국어\",\"ms\":\"ms\",\"msName\":\"Melayu\",\"nb\":\"nb\",\"nbName\":\"Norsk\",\"nl\":\"nl\",\"nlName\":\"Nederlands\",\"pa\":\"pa\",\"paName\":\"ਪੰਜਾਬੀ\",\"pl\":\"pl\",\"plName\":\"Polski\",\"pt\":\"pt\",\"ptName\":\"Português\",\"ro\":\"ro\",\"roName\":\"Română\",\"ru\":\"ru\",\"ruName\":\"Русский\",\"selectLanguage\":\"Select your language\",\"sv\":\"sv\",\"svName\":\"Svenska\",\"ta\":\"ta\",\"taName\":\"தமிழ்\",\"th\":\"th\",\"thName\":\"ไทย\",\"tr\":\"tr\",\"trName\":\"Türkçe\",\"ur\":\"ur\",\"urName\":\"اردو\",\"vi\":\"vi\",\"viName\":\"Tiếng Việt\",\"zh\":\"zh\",\"zhName\":\"简体中文\",\"zh-cn\":\"zh-cn\",\"zh-cnName\":\"简体中文\",\"zh-tw\":\"zh-tw\",\"zh-twName\":\"繁體中文\"},\"global\":{\"400\":\"請求錯誤\",\"404\":\"鏈接未找到\",\"500\":\"出了一些問題\",\"bookDemo\":\"預約展示\",\"faq\":\"常見問題\",\"more\":\"更多\",\"less\":\"較少\",\"eventMenu\":\"事件\",\"scanMe\":\"Scan me\",\"success\":\"成功\",\"needPaidToUseFeature\":\"您需要購買付費方案才能使用此功能。\",\"needPremiumToUseFeature\":\"此功能僅適用於高級帳戶。\",\"noMoreFreeTrial\":\"您已經沒有可使用的免費試用動態二維碼。為了繼續使用,您可以購買新方案或 renew 您的方案。\",\"getNow\":\"立即獲取\",\"requireField\":\"必填欄位\",\"min\":\"掃描值必須大於或等於{number}\",\"invalidUrl\":\"無效的URL\",\"invalidGoogleReviewUrl\":\"請輸入有效的 Google 評論連結\",\"invalidEmail\":\"無效的 email\",\"invalidNumber\":\"無效號碼\",\"invalidFileSize\":\"您的 file 太大了,如果人們掃描它,將需要很長時間才能在他們的手機上加載,請調整您的 file 大小或升級!\",\"invalidImageSize\":\"您的圖片太大了!請使用建議的圖片大小。\",\"invalidFile\":\"無效的 file\",\"uploadFileSuccess\":\"您的file已成功上傳!\",\"showDemo\":\"觀看示範\",\"pleaseVerifyEmail\":\"請驗證您的email以使用此功能。\",\"qrCode\":\"QR 碼\",\"editUrl\":\"編輯網址\",\"trackData\":\"追蹤數據\",\"learnMore\":\"了解更多\",\"vCard\":\"vCard\",\"event\":\"活動\",\"file\":\"File\",\"menu\":\"菜單\",\"video\":\"視頻\",\"settings\":\"設置\",\"socialMedia\":\"Link Page\",\"socialMediaProfile\":\"社交媒體\",\"dashboard\":\"儀表板\",\"titleH5Editor\":\"您的網頁標題\",\"descH5Editor\":\"您的頁面簡短描述\",\"htmlCategory\":\"Landing page\",\"smedia\":\"Link Page\",\"googleFormUrl\":\"Google Form\",\"googleReviewUrl\":\"Google 評論\",\"googleReviewUrlDesc\":\"使用可掃描的 QR 碼來獲取更多 Google 評論\",\"multiUrl\":\"Smart URL\",\"wechatMiniApp\":\"微信小程序\",\"wechatTaobao\":\"微信/淘宝\",\"wechatAlipayPayment\":\"微信/支付宝\",\"appStores\":\"App stores\",\"mp3\":\"MP3\",\"instagram\":\"Instagram\",\"pinterest\":\"Pinterest\",\"tiktok\":\"抖音\",\"youtube\":\"Youtube\",\"wifi\":\"Wifi\\nWifi\",\"gs1DigitalLink\":\"GS1 數位\",\"yourUrl\":\"您的網址\",\"yourUrlDesc\":\"將任何連結或資源存儲在線上,以便輕鬆分享。\",\"vCardDesc\":\"分享您的聯絡資訊,使用可掃描的數位名片。\",\"fileDesc\":\"分享一個帶有掃描的 PDF、JPEG、PNG、MP4、Excel 和 Word file。\",\"socialMediaProfileDesc\":\"在社交媒體上擴大您的受眾、提高互動和印象\",\"googleFormUrlDesc\":\"通過將 Google Forms 轉換為 QR 碼來獲得更多回覆。\",\"gs1DigitalLinkDesc\":\"輕鬆地為GTIN、GCN、SSCC、GLN、GDTI、GSRN等創建QR碼。\",\"menuDesc\":\"將您的數位菜單轉換為QR碼,提供無接觸的選擇。\",\"appStoresDesc\":\"在 Google Play、App Store 和 AppGallery 上提高應用程式下載量\",\"htmlCategoryDesc\":\"無代碼頁面建立工具最適合任何活動。\",\"multiUrlDesc\":\"在一個 QR 碼中嵌入多個連結,以滿足不同掃描器的需求。\",\"emailDesc\":\"儲存您的email地址和預先製作的email\",\"wifiDesc\":\"透過掃描分享網路。儲存 Wi-Fi 密碼、SSID 和加密方式。\",\"mp3Desc\":\"上傳 WAV 或 MP3 格式的音訊檔案,最大可達 60MB。\",\"videoDesc\":\"轉換一個 mp4 或豐富媒體以便更容易分享\",\"eventDesc\":\"輸入活動詳情—標題、地點和持續時間\",\"facebookDesc\":\"分享您的個人檔案、專頁、社團、貼文、短片和活動\",\"youtubeDesc\":\"儲存您的YouTube頻道連結、影片、短片以及其他資產\",\"instagramDesc\":\"通過分享您的個人資料、頁面、帖子或影片來擴大觸及範圍。\",\"pinterestDesc\":\"通過分享您的個人資料和精心製作的針腳來增加曝光率。\",\"tiktokDesc\":\"通過分享您的個人檔案來擴大受眾和互動\",\"twitterDesc\":\"分享您的X個人資料、頁面或推文,以擴大您的社群。\",\"locationDesc\":\"輸入緯度和經度以分享準確的位置資訊\",\"textDesc\":\"分享引述、指示、程式碼、純文字等\",\"smsDesc\":\"存儲您的手機號碼與預填文字訊息\",\"seoOgTitle\":\"最佳QR碼生成器 - QR Tiger - 這款QR碼生成器可製作帶有標誌的自定義QR碼。\",\"seoOgDescription\":\"最佳的 QR 碼生成器,用於專業用途和行銷,可以創建帶有標誌和追踪數據的動態 QR 碼,提供免費定制的 QR 碼生成器與標誌。\",\"home\":\"家庭\",\"about\":\"關於\",\"acceptAll\":\"接受全部\",\"acceptAllNote\":\"點擊「接受所有 Cookies」即表示您同意我們使用所有 Cookies,詳情請參閱我們的{link}。\",\"advertisingCookies\":\"啟用廣告 Cookie\",\"advertisingCookiesDesc\":\"這些幫助顯示更相關的廣告,並幫助我們評估廣告效果。\",\"applyChanges\":\"應用更改\",\"bulkQR\":\"批量 QR 碼\",\"cookieCategories\":\"餅乾類別\",\"cookieDeclaration\":\"Cookie聲明\",\"cookieNote\":\"注意:基本的 cookies 讓我們的網站運行順暢,無法關閉。\",\"cookiePolicy\":\"Cookie 政策\",\"cookieSettings\":\"Cookie 設定\",\"essentialCookies\":\"必要 Cookie(始終啟用)\",\"essentialCookiesDesc\":\"這些都是常時開啟的。它們是必要的,以使我們的網站正常運作,如安全性、登入和基本功能。\",\"functionalCookies\":\"啟用功能性 Cookie\",\"functionalCookiesDesc\":\"這些功能會記住您的設定,例如您的語言、位置或登入詳細資料,以提供更流暢的使用體驗。\",\"manageYourCookie\":\"在下方管理您的 Cookie 偏好設定。欲瞭解更多詳情,請查看我們的 {link}。\",\"performanceCookies\":\"啟用性能 Cookie\",\"performanceCookiesDesc\":\"這些幫助我們了解人們如何使用我們的網站,從而讓我們做得更好。\",\"rejectCookies\":\"拒絕非必要的 Cookie\",\"whichCookies\":\"如果您想查看我們使用的所有 cookie,請訪問我們的{link}頁面。在那裡,您將找到一份完整的 cookie 列表,包括提供者、功能以及在您設備上停留的時間長短。\",\"whyCookies\":\"我們建議您查看此頁面,以了解我們的網站如何以及為何使用 cookie。\",\"whyUseCookie\":\"我們使用 cookies 來提升您的體驗,幫助我們了解網站的使用情況,並向您顯示對您重要的內容和廣告。\",\"twitter\":\"Twitter\",\"bulkSolution\":\"大量解決方案\",\"login\":\"登入\",\"longLogin\":\"登入您的QR TIGER帳戶\",\"loginWithSAML\":\"使用SAML登入\",\"backToLogin\":\"返回登入\",\"back\":\"返回\",\"logout\":\"登出\",\"emailAddress\":\"Email 地址\",\"phoneNumber\":\"電話號碼\",\"password\":\"密碼\",\"enterCaptcha\":\"輸入代碼\",\"confirmPassword\":\"確認密碼\",\"passwordNotMatch\":\"密碼不符合\",\"rememberMe\":\"記得我\",\"signin\":\"登入\",\"forgotPassword\":\"忘記密碼\",\"dontHaveAnAccount\":\"還沒有帳戶嗎?\",\"signUp\":\"註冊\",\"register\":\"註冊\",\"save\":\"保存\",\"generateQRCode\":\"生成QR碼\",\"CreateQRCode\":\"創建QR碼\",\"generateDynamicQRCode\":\"生成動態 QR 碼\",\"logoFormat\":\"300 x 300 像素,72dpi\",\"noImage\":\"沒有圖像\",\"removeLogo\":\"移除標誌\",\"removeImage\":\"移除圖片\",\"downloadSampleImage\":\"下載範例圖片\",\"logoCodeGuide\":\"您可以稍後自訂這些範本,使其符合您的品牌。\",\"logoCodeGuide2\":\"請務必掃描測試您的 QR 碼是否有效。\",\"logoCodeHint\":\"閱讀為何您的QR碼無法正常運作\",\"noLogo\":\"沒有標誌\",\"uploadImage\":\"上傳\",\"downloadSVG\":\"下載 SVG\",\"downloadPNG\":\"下載 PNG\",\"downloadEbook\":\"下載電子書\",\"singleColor\":\"純色\",\"colorGradient\":\"漸變\",\"backgroundImage\":\"圖片\",\"backgroundImageFormat\":\"320 x 640像素,72dpi\",\"backgroundImageFormat1\":\"(320 x 320 像素,72dpi)\",\"customEyeColor\":\"自訂眼睛顏色\",\"background\":\"背景\",\"pleaseSelect\":\"請選擇\",\"leftRight\":\"左 - 右\",\"topBottom\":\"頂部 - 底部\",\"bottomTop\":\"底部 - 頂部\",\"NWSE\":\"西北-東南\",\"SWNE\":\"西南 - 東北\",\"radial\":\"徑向\",\"eyeColor\":\"眼睛顏色\",\"color\":\"顏色\",\"transparentBackground\":\"透明背景\",\"frameText\":\"裝框文本\",\"frameTextFont\":\"框架文字字型\",\"name\":\"您的名字\",\"username\":\"用戶名稱\",\"usernamePlaceholder\":\"用戶名稱\",\"title\":\"標題\",\"organization\":\"組織\",\"here\":\"這裡\",\"fullName\":\"您的全名\",\"phone\":\"電話\",\"firstName\":\"名字\",\"lastName\":\"姓氏\",\"email\":\"Email\",\"whatsapp\":\"zh-tw: WhatsApp\",\"website\":\"網站\",\"appstoreHeading\":\"為 Android 和 iOS 設備創建一個單一的 QR 碼\",\"appstoreBody\":\"一個 QR 碼,會自動連結到正確的app store或play store鏈接。無論掃描器使用的設備作業系統是什麼,他們都會進入正確的應用程式。\",\"fileHeading\":\"立即分享文件和照片\",\"fileBody\":\"無論您身在何處,只需一個QR碼即可分享所有數位資產,輕鬆完成銷售!\",\"googleFormHeading\":\"建立一個Google form,以獲取更多關於您的客戶的資訊。\",\"googleFormBody\":\"透過 Google Forms,您可以在您的手機或網頁瀏覽器中創建和分析調查,無需特殊軟體。您可以即時查看結果,並且可以通過圖表和圖形輕鬆總結調查結果。\",\"googleReviewHeading\":\"透過一次掃描即可獲得更多 Google 評論\",\"googleReviewBody\":\"在一個掃描中直接引導客戶前往您的評論頁面,無需搜索。將您的QR碼與ReviewCook配對,提供語音輸入和AI輔助,以及SEO優化的草稿,讓留下反饋變得輕鬆。\",\"htmlHeading\":\"創建一個包含文字、圖片、影片和檔案的 HTML5 頁面。\",\"htmlBody\":\"一個包含所有文字、圖像、檔案、mp3 和影片的 HTML5 頁面,以便在一個掃描中宣傳您的產品和服務,並追踪數據!\",\"menuHeading\":\"為您的客戶提供無接觸解決方案\",\"menuBody\":\"創建一個用戶可以即時查看的 PDF 或圖像數字菜單,無需使用應用程式!\",\"mp3Heading\":\"只需掃描 QR 碼即可上傳並與聽眾分享您的音頻。\",\"mp3Body\":\"創建一個 QR 碼,與粉絲分享 MP3 歌曲的預覽。\",\"murlHeading\":\"一個 QR 碼用於多個目的\",\"murlBody\":\"創建一個 QR 碼,根據使用者的位置、時間或語言來更改其 URL。就像一個可以在早餐、午餐和晚間酒水之間切換的菜單。\",\"smediaHeading\":\"一個QR碼包含您所有的社交和商務頻道\",\"smediaBody\":\"最大化您的客戶群並增加您在所有社交媒體和業務頁面上的追隨者,這將有助於增加銷售和粉絲數。\",\"vcardHeading\":\"創建您的數位名片\",\"vcardBody\":\"現在用戶只需掃描一下並點擊一下,就可以保存您的業務信息了。\",\"videoHeading\":\"在幾秒內分享視頻檔案\",\"videoBody\":\"上傳一段視頻file,並將其轉換為QR碼,以增加點擊率和可見度。\",\"urlHeading\":\"更改網址,而不是QR碼\",\"urlBody\":\"使用動態QR碼,當您的網址更改時無需擔心重新列印。\",\"free\":\"免费\",\"generateBulkQR\":\"生成批量QR碼\",\"noCreditRequire\":\"無需信用卡\",\"supportedFormats\":\"支援的格式\",\"regular\":\"常規\",\"advanced\":\"進階\",\"premium\":\"高級\",\"professional\":\"專業的\",\"enterprise\":\"企業\",\"contactUs\":\"聯絡我們\",\"support\":\"支持\",\"currency\":\"美元\",\"month\":\"月份\",\"year\":\"年份\",\"getOneMonth\":\"獲得 1 個月\",\"getOneYear\":\"獲得 1 年\",\"copy\":\"複製\",\"copied\":\"複製\",\"canUploadOneFile\":\"您一次只能上傳一個file。\",\"uploadMenuFile\":\"上傳您的菜單:\",\"uploadVideoFile\":\"上傳您的影片:\",\"usageInstruction\":\"使用說明\",\"uploadYourFile\":\"上傳 File\",\"uploadYourPaymentCode\":\"上傳付款代碼圖片\",\"uploadMenu\":\"上傳菜單\",\"uploadVideo\":\"上傳影片\",\"trackDynamicQR\":\"學習如何使用{dynamicQR}追蹤數據\",\"finishQrCode\":\"不,繼續編輯\",\"switchToCategory\":\"是的,切換到新的類別\",\"dynamicQRCodes\":\"動態 QR 碼\",\"dynamicQRVcard\":\"電子名片 QR 碼製作教學\",\"dynamicQRFile\":\"File QR 碼製作教學\",\"dynamicQRMurl\":\"多連結功能僅支持動態QR碼的生成。\",\"dynamicQRWechatAlipay\":\"WeChat支付宝聚合收款碼生成教程\",\"dynamicQRAppStore\":\"APP 下載 QR 碼製作教學\",\"dynamicQRHtml\":\"H5 編輯 QR 碼製作教學\",\"dynamicQRMp3\":\"MP3音頻QR碼製作教程\",\"dynamicQRSmedia\":\"社交媒體 QR 碼製作教學\",\"dynamicQRUrl\":\"製作網站QR碼教學\",\"buildWithMenuTiger\":\"一個直觀的數位菜單 + 銷售儀表板,適用於各種類型的餐廳。\",\"buildWithGiftlips\":\"為朋友、家人和同事錄製並個性化視頻賀卡。\",\"tryForFree\":\"免費試用\",\"buildWithGoogleForm\":\"使用我們全方位的表單生成器,具有可自訂的欄位和分析功能。它由動態 QR 碼提供動力,以提供更多的可訪問性和靈活性。\",\"buildWithGoogleReview\":\"使用我們的全方位評論工具,配有引導式反饋、語音輸入和AI輔助,用戶可以在發布前編輯優化的評論草稿。\",\"createFreeForm\":\"免費建立一個表格\",\"createAiReviewQR\":\"建立一個 AI 審核 QR碼\",\"or\":\"或\",\"urlForIphone\":\"蘋果手機的網址\",\"urlForAndroid\":\"Android 的網址\",\"urlForHarmony\":\"Harmony的URL\",\"facebook\":\"Facebook\",\"benefitOfDynamicQrCode\":\"動態QR碼的好處是什麼?\",\"popupLongTitle\":\"一個動態 QR 碼讓您隨時編輯資料,例如您的網址或 vCard。這可以幫您節省印刷的時間和金錢。\",\"trackValueData\":\"追蹤有價值的數據,例如:\",\"amountOfScan\":\"掃描次數\",\"timeOfScan\":\"掃描時間\",\"location\":\"地點\",\"deviceType\":\"設備類型(Android/iPhone)\",\"goToSubscriptionPlans\":\"開始我的免費試用\",\"text\":\"文本\",\"ssid\":\"SSID\",\"ssidTooltip\":\"請檢查您的路由器底部或側面。\",\"type\":\"類型\",\"noEncryption\":\"無加密\",\"time\":\"時間\",\"language\":\"語言\",\"geoFence\":\"地理圍欄\",\"latitude\":\"緯度\",\"longitude\":\"經度\",\"minCoordinates\":\"{title} 必須大於或等於 {number}\",\"maxCoordinates\":\"{title} 必須小於或等於 {number}\",\"radius\":\"半徑以米為單位(1米 = 3.28英尺)\",\"amountOfScans\":\"掃描次數\",\"urlForLanguage\":\"語言{number}的URL\",\"addMore\":\"添加更多\",\"startUrl\":\"開始網址\",\"defaultUrl\":\"默認網址\",\"urlForScan\":\"數字 {number} 的URL\",\"url\":\"URL\",\"urlForLocation\":\"位置{number}的網址\",\"urlForGeoFence\":\"Geo-Fencing的URL {number}\",\"country\":\"國家\",\"region\":\"地區\",\"city\":\"城市\",\"optional\":\"選擇性\",\"urlForTimezone\":\"時間 {number} 的網址\",\"twentyFourHourFormat\":\"24小時制\",\"startTime\":\"開始時間\",\"endTime\":\"結束時間\",\"enterTimezone\":\"輸入時區(所有時間都需要遵循同一個時區)\",\"endTimeMustBigger\":\"時間結束必須大於時間開始\",\"timeOverlap\":\"您的時間與先前輸入有重疊。請更改!\",\"yes\":\"是的\",\"ok\":\"好\",\"error\":\"錯誤\",\"confirm2Fa\":\"確認雙重認證()。\",\"confirm2FaCodeTooltip\":\"請輸入發送到您手機號碼的6位驗證碼。\",\"resendConfirm2FaCode\":\"重新發送代碼\",\"seconds\":\"秒钟\",\"sms\":\"短信\",\"call\":\"通話\",\"registerWithEmail\":\"請使用您的email註冊。\",\"registerWithWechat\":\"微信註冊\",\"loginWithEmail\":\"郵件帳戶登入\",\"loginWithWechat\":\"微信登入\",\"editPhoto\":\"編輯照片\",\"zoom\":\"放大\",\"crop\":\"裁剪\",\"skipCropping\":\"跳過裁剪\",\"cancel\":\"取消\",\"verify\":\"驗證\",\"download\":\"下載\",\"share\":\"分享\",\"embedQR\":\"嵌入 QR 碼\",\"embedQRTitle\":\"在您的網站上嵌入 QR 碼\",\"embedQRDesc\":\"要在您的網站上嵌入 QR 碼,請使用以下 HTML 代碼。\",\"embedQRNoti\":\"允許商業使用。\",\"dynamicQRRecommend\":\"如果您想要在列印後追踪績效並編輯資料,我們建議您創建一個動態QR碼。\",\"dynamicQRProvide\":\"我們只提供{qrCategory}的動態QR碼。\",\"appstoreTab\":\"App Stores 解決方案\",\"murlTab\":\"多 URL 解決方案\",\"vcardTab\":\"vCards因為包含了許多資料\",\"taobaoTab\":\"淘寶二維碼\",\"fileTab\":\"File 解決方案\",\"htmlTab\":\"HTML QR碼\",\"zhifuTab\":\"支付 QR 碼\",\"smediaTab\":\"社交媒體 QR 碼\",\"mp3Tab\":\"MP3 QR碼\",\"menuTab\":\"菜單QR碼\",\"videoTab\":\"視訊 QR 碼\",\"search\":\"搜索\",\"gradientType\":\"漸變類型\",\"months\":\"月份\",\"years\":\"年份\",\"shareCode\":\"分享代碼 - QR TIGER\",\"resetPassword\":\"重設密碼 - QR TIGER\",\"submit\":\"提交\",\"changePasswordSuccess\":\"您的密碼已成功更改!\",\"changePasswordError\":\"Unable to change password. Please try again or use a new reset link.\",\"clickOnGenerateQRCodeButton\":\"點擊第一步中的生成QR碼按鈕。\",\"yourName\":\"您的名字\",\"yourEmail\":\"你的 email\",\"yourMessage\":\"您的訊息\",\"send\":\"發送\",\"registrationConfirm\":\"註冊確認\",\"enterEmail\":\"輸入 email\",\"enterYourEmail\":\"輸入您的 email\",\"newletterSubscribe\":\"發送給我提示和教程\",\"help\":\"幫助\",\"referFriend\":\"獲取免費月份\",\"billing\":\"帳單\",\"gdprPrivacy\":\"您的隱私對我們非常重要。\",\"gdprDescription\":\"我們使用 cookie 和類似技術來通過存儲和檢索信息來增強您的網站體驗。點擊「接受全部」即表示您同意我們使用 cookie 和類似技術。\",\"gdprAcceptAll\":\"接受全部\",\"gdprAcceptEssential\":\"接受 Essential\",\"formQR\":\"動態 QR 碼\",\"videoQR\":\"動態 QR 碼\",\"docVerifyDesc\":\"所有2D Rainbow的新用戶,在完成付款流程後,需要在使用 \\\"file\\\"、\\\"H5編輯\\\" 和 \\\"音頻\\\" 功能來創建QR碼之前,完成用戶記錄。並承諾不會使用二維彩虹QR碼來傳播任何非法信息。\",\"docVerifyHeading\":\"新使用者記錄\",\"docVerifyBtnText\":\"現在\",\"useMapForLocation\":\"使用互動地圖設定您想要的位置\",\"product\":\"產品\",\"solution\":\"解決方案\",\"learn\":\"學習\",\"customQr\":\"自訂您的 QR 碼\",\"whyIsMy\":\"為什麼我的{qrCodeNotWorking}?\",\"qrCodeNotWorking\":\"QR碼無法使用\",\"saveAsTemplate\":\"保存為範本\",\"yourTemplates\":\"您的模板\",\"pattern\":\"模式\",\"eyes\":\"眼睛\",\"logo\":\"標誌\",\"colors\":\"顏色\",\"frame\":\"框架\",\"template\":\"模板\",\"patternCustom\":\"您可以稍後自訂這些範本,以符合您的品牌。\",\"patternWarning\":\"如果您選擇這個圖案,請注意一些較老的安卓相機可能會有困難掃描它。\",\"eyeCustom\":\"選擇眼睛讓您的QR碼脫穎而出。掃描時,相機會辨識眼睛。\",\"eyeWarning\":\"如果您選擇這個眼睛,請注意一些較舊的安卓相機可能會有困難掃描它。\",\"framesCustom\":\"一個帶有框架和呼籲行動的快速響應碼會增加 80% 的掃描次數。\",\"logoCustom\":\"透過這個帶有標誌的QR碼生成器,您可以輕鬆地加入您的標誌,增強品牌記憶。\",\"logoSize\":\"(300 x 300像素,72dpi)\",\"colorsCustom\":\"以您的品牌顏色來豐富您定制的QR碼。\",\"templatesCustom\":\"選擇一個現成的模板(選擇性)\",\"availableLogos\":\"或使用我們提供的標誌。\",\"yourLogos\":\"或使用您的標誌\",\"templates\":\"模板\",\"enterPlace\":\"搜索 Google 地圖\",\"nameYourQRCode\":\"請為您的 QR 碼命名(選填)\",\"resend\":\"重新發送 Email 驗證\",\"verifyYourEmail\":\"驗證您的email{email}以提升您的QR TIGER帳戶安全性\",\"trustedBy\":\"自2018年以來,已有超過{brandNumber}個品牌信任。\",\"brandNumber\":\"850,000 品牌\",\"successStories\":\"閱讀我們的客戶成功故事\",\"enjoyCustomerSupport\":\"在所有方案上享受 24/7 的客戶支援\",\"registerFreeTrial\":\"註冊您的免費試用帳戶\",\"gotoVCardEnterprise\":\"需要超過500個 vCards 嗎?試試 Enterprise!\",\"step1\":\"步驟 1\",\"step2\":\"第二步\",\"step3\":\"第三步\",\"urlFirstStep\":\"請輸入您的網站 URL。\",\"staticQR\":\"靜態QR碼\",\"dynamicQR\":\"動態QR\",\"dynamicQRTooltip\":\"讓您編輯 URL 並追蹤掃描數據\",\"uploadQrCodeImageToExtractUrl\":\"...或上傳圖片以提取URL\",\"socialMediaTitle\":\"Links and Connections\",\"whatsappTab\":\"WhatsApp QR code\\n\\nWhatsApp QR 碼\",\"whatsappHeading\":\"為 WhatsApp 訊息創建 QR 碼\",\"whatsappBody\":\"掃描 QR 立即在 WhatsApp 中開啟一個新聊天,包括您的聯絡電話號碼和預填訊息。當聊天被開啟時收到通知。\",\"no\":\"不要\",\"advanceQR\":\"QR 預先支付\",\"vcardCustomSlugInvalidFormat\":\"格式無效。請嘗試其他格式。\",\"vcardCustomSlugMinLength\":\"最小長度為 {num} 個字元。\",\"vcardCustomSlugTakenError\":\"已被使用。請嘗試另一個。\",\"youtubeBody\":\"視頻QR碼提高了內容傳播的速度,提高了項目管理的效率,並展示產品說明。\",\"youtubeHeading\":\"使用視頻 QR 碼可以輕鬆地將您的視頻大規模展示給更多人。\"},\"Home\":{\"scanMe\":\"掃描我\"}},\"components\":{\"MainHeader\":{\"qrCodeApi\":\"QR碼API\",\"pricing\":\"價格設定\",\"blog\":\"部落格\",\"faq\":\"常見問題\",\"myAccount\":\"我的帳戶\",\"qrCodeGenerator\":\"QR碼生成器\",\"qrCodeGeneratorDesc\":\"為任何目的創建一個{customQr}\",\"freeCustomQr\":\"免費客製化 QR 碼\",\"bulkQrCodeGenerator\":\"批量 QR 碼生成器\",\"bulkQrCodeGeneratorDesc\":\"使用單次file上傳最多生成 3,000 個 QR 碼。\",\"comparePlatform\":\"QR TIGER與其他QR碼生成器比較\",\"comparePlatformDesc\":\"比較我們提供的價值和類似平台。\",\"qrDecodedReport\":\"QR 解碼:2026 年 QR 碼產業洞察報告\",\"qrDecodedReportDesc\":\"從我們的全球調查中獲得QR碼趨勢、洞察和關鍵發現,第一手資訊。\",\"qrCodeGeneratorApi\":\"QR Code 生成器 API\",\"qrCodeGeneratorApiDesc\":\"找出為什麼全球品牌選擇QR TIGER作為他們的QR碼合作夥伴\",\"qrCodeGeneratorEnterprise\":\"企業用QR碼生成器\",\"qrCodeGeneratorEnterpriseDesc\":\"大規模活動的定制解決方案\",\"qrCodevCardEnterprise\":\"企業數位名片\",\"qrCodevCardEnterpriseDesc\":\"創建和管理可以由每位使用者自訂的團隊 vCard。\",\"menuTiger\":\"MENU TIGER\",\"menuTigerDesc\":\"試試我們的QR碼互動餐廳菜單\",\"blogDesc\":\"閱讀 QR 碼新聞、功能和教程\",\"ebookAndWebinars\":\"電子書和網路研討會\",\"ebookAndWebinarsDesc\":\"我們的資源中心,您可以學習有關 QR 碼優化的所有資訊。\",\"appAndItegrations\":\"應用程式和整合\",\"appAndItegrationsDesc\":\"將QR TIGER與您最喜歡的工具連接起來\",\"podCasts\":\"視頻教程和播客\",\"podCastsDesc\":\"我們的影片教學合輯和《Stay QRious》播客系列\",\"marketing\":\"行銷\",\"education\":\"教育\",\"realEstate\":\"房地產\",\"retail\":\"零售\",\"logistics\":\"物流\",\"manufacturing\":\"製造业\",\"restaurants\":\"餐廳\",\"bookDesc\":\"探索各種類型的QR碼,並發現將其有效整合到您的業務策略中的方法。\",\"freeTrial\":\"探索我們的電子書\",\"industry\":\"行業\",\"qrCodesVsBarcodes\":\"QR碼 vs 條碼\",\"videoQRCode\":\"視頻 QR 碼\",\"dynamicQRCode\":\"動態 QR 碼\",\"menuQRCode\":\"菜單QR碼\",\"bulkQRCode\":\"批量 QR 碼\",\"googleFormQRCode\":\"Google Form QR碼\",\"urlQRCode\":\"URL QR碼\",\"multiURLQRCode\":\"多URL QR碼\",\"vCardQRCode\":\"vCard QR 碼\",\"appStoresQRCode\":\"App Stores QR 碼\",\"pdfQRCode\":\"PDF QR Code\",\"analyticsQRCode\":\"分析 QR 碼\",\"fileQRCode\":\"File QR 碼\",\"linkInBioQRCode\":\"Link Page QR碼\",\"imageQRCode\":\"圖片 QR 碼\",\"socialMediaQRCode\":\"社交媒體QR碼\",\"wiFiQRCode\":\"Wi-Fi QR碼\",\"whiteLabelQRCodeGenerator\":\"白牌QR碼生成器\",\"affiliates\":\"聯盟夥伴\",\"tryItNow\":\"立即嘗試吧!\",\"scanNow\":\"立即掃描!\",\"linkToQRCode\":\"連結至 QR 碼\",\"pdfToQRCode\":\"PDF轉QR碼\",\"instagramToQRCode\":\"Instagram 的 QR 碼\",\"locationToQRCode\":\"位置 QR 碼生成器\",\"youtubeToQRCode\":\"YouTube QR Code\\nYouTube QR 碼\",\"socialToQRCode\":\"社交媒體QR碼生成器\",\"smsToQRCode\":\"短訊QR碼產生器\",\"emailToQRCode\":\"Email QR碼生成器\",\"mp3ToQRCode\":\"MP3 和音頻 QR 碼生成器\",\"facbookToQRCode\":\"Facebook QR Code\\n臉書 QR 碼\",\"pinterestToQRCode\":\"Pinterest QR Code\\nPinterest QR Code\",\"textToQRCode\":\"文本QR碼生成器\",\"digitalBusinessCardQrCode\":\"數位名片 QR 碼\",\"landingPageQrCode\":\"Landing Page QR Code\\n\\nLanding Page 二維碼\",\"mp3QrCode\":\"MP3 QR 碼\",\"facebookQrCode\":\"Facebook QR Code\\n臉書 QR 碼\",\"youtubeQrCode\":\"YouTube QR碼\",\"instagramQrCode\":\"Instagram QR Code\\nInstagram QR碼\",\"pinterestQrCode\":\"Pinterest QR Code\\nPinterest QR碼\",\"emailQrCode\":\"Email QR碼\",\"textQrCode\":\"文本 QR 碼\",\"smsQrCode\":\"簡訊 QR 碼\",\"eventQrCode\":\"活動 QR 碼\",\"locationQrCode\":\"位置 QR 碼\",\"useCase\":\"使用案例\"},\"MainFooter\":{\"privacyPolicy\":\"隱私政策\",\"cookiesPolicy\":\"Cookies 政策\",\"termAndConditions\":\"條款和條件\",\"copyRight\":\"這個QR碼生成器是QR TIGER有限公司的註冊商標。{br}{tradeMark} © {year} www.qrcode-tiger.com\",\"qrCodeTradeMark\":\"'QR Code' 是 DENSO WAVE INCORPORATED 的商標。\",\"copyRightLink\":\"鏈接 1\",\"copyRightLink2\":\"鏈接 2\",\"homepage\":\"首頁\",\"learn\":\"學習\",\"blog\":\"部落格\",\"videoTutorials\":\"視頻教程 - QR碼基礎\",\"useCases\":\"使用案例\",\"resources\":\"資源\",\"faq\":\"常見問題\",\"appsIntegrations\":\"應用程式與整合\",\"qrInBulk\":\"大量的QR碼\",\"apiSolutions\":\"API 解決方案\",\"helpCenter\":\"幫助中心\",\"company\":\"公司\",\"aboutUs\":\"關於我們\",\"contactUs\":\"聯絡我們\",\"support\":\"支持\",\"mailTo\":\"it@qrtiger.com\",\"status\":\"狀態\",\"enterpriseSolutions\":\"企業解決方案\",\"pricing\":\"價格設定\",\"terms\":\"條款\",\"termsAgreements\":\"條款和條件\",\"termsOfAcceptableUse\":\"可接受使用條款\",\"language\":\"語言\",\"stayInLoop\":\"保持跟進\",\"stayInLoopdesc\":\"註冊我們的通訊,第一時間獲得促銷、更新和提示。\",\"thanksSigningUp\":\"感謝您的註冊!\",\"community\":\"加入社群\",\"downloadApp\":\"下載 QR TIGER 應用程式\",\"downloadAppDesc\":\"隨時製作和掃描QR碼\",\"faqText\":\"常見問題(FAQ)\",\"helpCenterBtnText\":\"訪問幫助中心\",\"enterEmailAddress\":\"您的email地址\",\"podcasts\":\"播客\",\"videoTutorialsBusiness\":\"視頻教程 - 企業用QR碼\",\"qrCodeForMarketing\":\"行銷用的 QR 碼\",\"qrCodeForEducation\":\"教育用QR碼\",\"qrCodeForLogistics\":\"物流用的QR碼\",\"qrCodeForEvents\":\"活動的QR碼\",\"qrCodeForEcommerce\":\"電子商務的QR碼\",\"qrCodeForRealEstate\":\"房地產的QR碼\",\"qrCodeForManufacturing\":\"製造業的QR碼\",\"qrCodeForGraphic\":\"圖形和文字QR碼生成\",\"qrCodeForBusiness\":\"商業名片 QR 碼生成\",\"qrCodeForImages\":\"生成QR碼圖片\",\"qrCodesForRestaurants\":\"餐廳用的QR碼\",\"qrCodesForHealthcare\":\"醫療保健的 QR 碼\",\"qrCodesForTravel\":\"旅行的 QR 碼\",\"qrCodeVsBarcode\":\"QR碼與條碼\",\"qrCodesVsBarcodes\":\"QR 碼與條碼\",\"urlQrCode\":\"URL QR Code\\n網址 QR 碼\",\"vcardQrCode\":\"vCard QR 碼\",\"pdfQrCode\":\"PDF QR Code\",\"fileQrCode\":\"File QR碼\",\"imageQrCode\":\"圖像 QR 碼\",\"wifiQrCode\":\"Wi-Fi QR碼\",\"videoQrCode\":\"視頻 QR 碼\",\"menuQrCode\":\"菜單 QR 碼\",\"googleFormQrCode\":\"Google Form QR碼\",\"murlQrCode\":\"多 URL QR 碼\",\"appStoresQrCode\":\"App Stores QR 碼\",\"guides\":\"指南\",\"appsAndIntegrations\":\"應用程式與整合\",\"bulkQrCodes\":\"大量 QR 碼\",\"faqs\":\"常見問題\",\"followUs\":\"跟隨我們\",\"exchangeLinks\":\"交換連結\",\"autoHome\":\"汽車之家\",\"gaiBang\":\"改邦設計\",\"quickDesign\":\"快速設計網絡導航\",\"fontSearch\":\"字型搜尋\",\"pptTemplates\":\"PPT模板\",\"gifCreation\":\"創建 GIF\",\"ufoDesign\":\"UFO設計站\",\"qrCodeLabel\":\"QR碼標籤列印\",\"siteMap\":\"網站地圖\",\"dynamicQRCode\":\"動態QR碼是如何運作的?\",\"multiUrlQRCode\":\"多URL QR碼\",\"digitalBusinessCard\":\"數位名片 QR 碼\",\"bulkQRCode\":\"批量 QR 碼生成器\",\"imageQRCode\":\"如何為圖像製作 QR 碼\",\"videoQRCode\":\"如何為視頻創建QR碼\",\"googleFormQRCode\":\"如何為 Google Form 創建 QR 碼?\",\"logoQRCode\":\"如何製作帶有標誌的QR碼\",\"analyticsQRCode\":\"如何使用 Google Analytics 追蹤 QR 碼\",\"restaurantQRCode\":\"如何製作餐廳菜單的QR碼\",\"fileQRCode\":\"QR 碼轉換器\"},\"RenderEditor\":{\"stylesLibrary\":\"樣式庫\",\"title\":\"標題\",\"enterTitle\":\"請輸入標題\",\"addTitle\":\"請添加標題\",\"text\":\"文本\",\"titleBody\":\"簡潔的標題和內容\",\"paragraph1\":\"在這個秋夜中,安靜地坐在小窗下,聽著窗外嘩啦作響的雨聲。\",\"paragraph2\":\"思雨,夾雜著遠方的思緒,輕輕地散向碎裂的蓮花。\",\"paragraph3\":\"從前,這把綠蘿蔔傘套一直都是綠色的,但現在,綠草變成了黃色,綠葉枯焦,粉紅色的斑點也變成了瘦弱的花朵,但它們仍然堅強地屹立著。\",\"addText\":\"添加文字在這裡\",\"letter\":\"信\",\"letterHeader\":\"親愛的\",\"letterBody\":\"我們決心在中國共產黨第十五次全國代表大會精神的指導下繼續努力工作,並感謝您以實際行動的幫助和關心。\",\"letterFooter\":\"誠摯地\",\"style\":\"風格\",\"p\":\"正常\",\"blockquote\":\"引言\",\"pre\":\"代碼\",\"h1\":\"標題 1\",\"h2\":\"標題 2\",\"h3\":\"標題 3\",\"h4\":\"標題 4\",\"h5\":\"標題 5\",\"h6\":\"標題 6\",\"buttons\":\"按鈕\",\"green\":\"綠色\",\"cyan\":\"青色\",\"gray\":\"灰色\",\"red\":\"紅色\",\"orange\":\"橙色\",\"dark\":\"黑暗\",\"clickMe\":\"點我\",\"recent\":\"最近的顏色\",\"foreground\":\"前景顏色\",\"setTransparent\":\"設置透明\",\"reset\":\"重置\",\"resetToDefault\":\"恢復為預設值\",\"cpSelect\":\"選擇\",\"bold\":\"粗體\",\"italic\":\"斜體\",\"underline\":\"下劃線\",\"clear\":\"移除字型風格\",\"lineHeight\":\"行高\",\"fontFamily\":\"字體系列\",\"strikethrough\":\"刪除線\",\"subscript\":\"下標\",\"superscript\":\"上標\",\"fontSize\":\"上標\",\"horizonalLine\":\"插入水平分隔線\",\"unorderedList\":\"無序列表\",\"orderedList\":\"有序清單\",\"insert\":\"插入\",\"audio\":\"音頻\",\"audioUrl\":\"音頻網址\",\"info\":\"資訊\",\"url\":\"網址\",\"needLoginToUseFeature\":\"請登錄或註冊以使用此功能\",\"maximumFileSize\":\"最大file尺寸\",\"maximumFileSizeError\":\"超過最大file大小。\",\"insertAudio\":\"插入音訊\",\"selectFromFiles\":\"從檔案中選擇\",\"table\":\"表\",\"tableMargin\":\"表格邊距\",\"addRowAbove\":\"在上方新增列\",\"addRowBelow\":\"在下方新增一列\",\"addColLeft\":\"新增左側欄位\",\"addColRight\":\"新增右側欄位\",\"delRow\":\"刪除列\",\"delCol\":\"刪除欄位\",\"delTable\":\"刪除表格\",\"borderColor\":\"邊框顏色\",\"merge\":\"儲存格合併\",\"colspan\":\"colspan\",\"rowspan\":\"rowspan\\n合併行\",\"split\":\"細胞分裂\",\"paragraph\":\"段落\",\"top\":\"頂部\",\"middle\":\"中間\",\"bottom\":\"底部\",\"baseline\":\"基線\",\"tableInfo\":\"表格資訊\",\"margin\":\"邊緣\",\"apply\":\"申請\",\"addDeleteRowCol\":\"列/行(新增/刪除)\",\"areaReset\":\"區域重置\",\"message\":\"\u003cb\u003e取消合併後\u003cbr/\u003e當前或周圍的儲存格\u003c/br\u003e\",\"more\":\"更多顏色\",\"background\":\"背景顏色\",\"backgroundImg\":\"背景圖片\",\"transparent\":\"透明\",\"left\":\"靠左对齐\",\"center\":\"置中对齐\",\"right\":\"向右對齊\",\"justify\":\"完全合理\",\"outdent\":\"取消縮排\",\"indent\":\"縮排\",\"link\":\"鏈接\",\"insertLink\":\"插入連結\",\"unlink\":\"取消連結\",\"edit\":\"編輯\",\"textToDisplay\":\"顯示的文字\",\"goLink\":\"這個連結應該指向哪個 URL?\",\"goEmail\":\"這應該發送到哪個email?\",\"openInNewWindow\":\"在新視窗中打開\",\"tableStyle\":\"表格風格\",\"tableBasic\":\"基本\",\"tableBordered\":\"邊框\",\"tableStriped\":\"條紋\",\"tableCondensed\":\"縮短\",\"tableHoverable\":\"可懸停\",\"file\":\"File\",\"support\":\"支持\",\"fileUrl\":\"File 網址\",\"insertFile\":\"插入File\",\"editImage\":\"編輯圖片\",\"altText\":\"替代文字\",\"caption\":\"標題\",\"width\":\"寬度\",\"height\":\"身高\",\"lock\":\"鎖\",\"dialogTitle\":\"更改圖片屬性\",\"dialogSave\":\"保存\",\"resizeLabel\":\"重置大小至原始。\",\"picture\":\"圖片\",\"videos\":\"視頻\",\"insertVideo\":\"插入影片\",\"uploadVideo\":\"上傳影片\",\"video\":\"視頻\",\"videoLink\":\"視頻鏈接\",\"videoUrl\":\"視頻網址\",\"videoProviders\":\"(YouTube、Vimeo、Vine、Instagram、DailyMotion 或 Youku)\",\"note\":\"注意:支援的平台有 YouTube、Vimeo、優酷、哔哩哔哩。\",\"videoSize\":\"影片大小\",\"videoOption0\":\"響應式\",\"videoOption1\":\"1280x720\",\"videoOption2\":\"853x480\",\"videoOption3\":\"640x360\",\"videoOption4\":\"560x315\",\"alignment\":\"對齊\",\"alignmentOption0\":\"沒有\",\"alignmentOption1\":\"左\",\"alignmentOption2\":\"對的\",\"alignmentOption3\":\"初始\",\"alignmentOption4\":\"繼承\",\"suggested\":\"當視頻播放完畢時顯示建議視頻\",\"controls\":\"顯示播放器控制項\",\"autoplay\":\"自動播放\",\"loop\":\"循環\",\"ok\":\"OK\",\"notValidPlatform\":\"平台不支援,請選擇以下其中一個:YouTube、Vimeo、Youku、Bilibili\",\"emptyURL\":\"URL未設置\",\"template\":\"模板\",\"error\":\"錯誤\",\"sliderImage\":\"滑塊圖片\",\"upload\":\"上傳\",\"noFile\":\"未選擇file\",\"insertImage\":\"插入圖片\",\"imageUrl\":\"圖片網址\",\"resizeFull\":\"調整大小至全螢幕\",\"resizeHalf\":\"調整一半\",\"resizeQuarter\":\"調整四分之一\",\"resizeNone\":\"原始尺寸\",\"floatLeft\":\"左浮動\",\"floatRight\":\"向右浮動\",\"floatNone\":\"移除浮點数\",\"shapeRounded\":\"形狀:圓形\",\"shapeCircle\":\"形狀:圓形\",\"shapeThumbnail\":\"形狀:縮圖\",\"shapeNone\":\"形狀: 無\",\"dragImageHere\":\"拖曳圖片或文字至此\",\"dropImage\":\"放置圖像或文字\",\"removeImage\":\"清晰\",\"original\":\"原文\",\"loader\":\"載入中...\",\"addBtn\":\"添加\",\"resetBtn\":\"重置\",\"imageSlider\":\"滑動圖片\",\"invalidExtensionError\":\"不支援此擴展名,請插入以下其中一個:jpg、png、svg、jpeg\",\"invalidVideoExtensionError\":\"不支援此檔案格式,請插入以下其中一個格式:mp4、mov。\",\"uploadImagesError\":\"出了些問題,請再試一次!\",\"Success\":\"成功\",\"SuccessMessage\":\"模板已成功加載\",\"Error\":\"錯誤\",\"ErrorMessage\":\"顯然發生了一個錯誤。\",\"selectTemplate\":\"選擇一個範本\",\"popularTemplate\":\"更受歡迎\",\"yourTemplates\":\"您的模板\",\"empty\":\"沒有資料\",\"select\":\"選擇\",\"delete\":\"刪除\",\"deleteTemplate\":\"刪除一個範本\",\"deleteConfirmation\":\"您想刪除這個模板嗎?\",\"noDelete\":\"不要\",\"yesDelete\":\"是的,刪除模板。\",\"saveYourTemplate\":\"保存您的模板\",\"saveThisTemplate\":\"保存此模板\",\"saveTemplate\":\"保存模板\",\"nameOfTemplate\":\"模板名稱\",\"unsaved\":\"您在編輯器中有未保存的更改。您要離開此頁面並放棄更改,還是留在此頁面?\",\"notLogged\":\"您需要登錄後才能保存模板。\",\"undo\":\"取消\",\"redo\":\"重做\",\"copy\":\"複製\",\"paste\":\"粘貼\",\"print\":\"列印\",\"shortcuts\":\"鍵盤快速鍵\",\"close\":\"關閉\",\"textFormatting\":\"文本格式化\",\"action\":\"行動\",\"paragraphFormatting\":\"段落格式化\",\"documentStyle\":\"文件風格\",\"extraKeys\":\"額外的按鍵\",\"specialChar\":\"特殊字符\",\"selectChar\":\"選擇特殊字元\",\"insertParagraph\":\"插入段落\",\"helpUndo\":\"撤銷上一個命令\",\"helpRedo\":\"重新執行上一個指令\",\"tab\":\"Tab\",\"untab\":\"取消縮排\",\"helpBold\":\"設置為粗體風格\",\"helpItalic\":\"設置斜體樣式\",\"helpUnderline\":\"設置下劃線樣式\",\"helpStrikethrough\":\"設置刪除線樣式\",\"removeFormat\":\"清潔一種風格\",\"justifyLeft\":\"設置左對齊\",\"justifyCenter\":\"設置置中對齊\",\"justifyRight\":\"設置右對齊\",\"justifyFull\":\"設定完整對齊\",\"insertUnorderedList\":\"切換無序列表\",\"insertOrderedList\":\"切換有序列表\",\"helpOutdent\":\"將當前段落取消縮排\",\"helpIndent\":\"在當前段落進行縮排\",\"formatParagraph\":\"將當前區塊的格式更改為段落(P 標籤)。\",\"formatH1\":\"將當前區塊的格式更改為H1\",\"formatH2\":\"將當前區塊的格式更改為 H2。\",\"formatH3\":\"將目前區塊的格式更改為 H3。\",\"formatH4\":\"將當前區塊的格式更改為 H4。\",\"formatH5\":\"將目前區塊的格式更改為 H5。\",\"formatH6\":\"將當前區塊的格式更改為 H6\",\"insertHorizontalRule\":\"插入水平分隔線\",\"linkDialog\":\"顯示連結對話框\",\"fontName\":\"設置字型族。\",\"help\":\"幫助\",\"fullscreen\":\"全螢幕\",\"codeview\":\"代碼檢視\",\"yourContent\":\"您的內容\",\"limitOneFile\":\"您每次只能上傳 1 個 file。\"}}}}},\"timeZone\":\"UTC\",\"children\":[[\"$\",\"$L15\",null,{}],[\"$\",\"$16\",null,{\"fallback\":null,\"children\":[\"$\",\"$L17\",null,{}]}],[\"$\",\"$L18\",null,{}],[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"$5\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$L19\",\"notFoundStyles\":[]}]]}]\n"])</script><script>self.__next_f.push([1,"1a:I[84704,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"PageIntlClientBoundary\"]\n1b:I[70049,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"9708\",\"static/chunks/9708-1ee31b349ca7cee7.js\",\"6851\",\"static/chunks/6851-efeff18a05a0a715.js\",\"6773\",\"static/chunks/6773-1509e69c8ea411a9.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"39\",\"static/chunks/39-b2c68a85691e2a75.js\",\"8854\",\"static/chunks/8854-324ed598a153b6a1.js\",\"3500\",\"static/chunks/app/%5Blocale%5D/(site)/page-8302dc3f65074d52.js\"],\"PreloadCss\"]\n1c:I[41393,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"9708\",\"static/chunks/9708-1ee31b349ca7cee7.js\",\"6851\",\"static/chunks/6851-efeff18a05a0a715.js\",\"6773\",\"static/chunks/6773-1509e69c8ea411a9.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1"])</script><script>self.__next_f.push([1,"629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"39\",\"static/chunks/39-b2c68a85691e2a75.js\",\"8854\",\"static/chunks/8854-324ed598a153b6a1.js\",\"3500\",\"static/chunks/app/%5Blocale%5D/(site)/page-8302dc3f65074d52.js\"],\"default\"]\n1d:I[17857,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"9708\",\"static/chunks/9708-1ee31b349ca7cee7.js\",\"6851\",\"static/chunks/6851-efeff18a05a0a715.js\",\"6773\",\"static/chunks/6773-1509e69c8ea411a9.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"39\",\"static/chunks/39-b2c68a85691e2a75.js\",\"8854\",\"static/chunks/8854-324ed598a153b6a1.js\",\"3500\",\"static/chunks/app/%5Blocale%5D/(site)/page-8302dc3f65074d52.js\"],\"default\"]\n1e:I[81523,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"9708\",\"static/chunks/9708-1ee31b349ca7cee7.js\",\"6851\",\"static/chunks/6851-efeff18a05a0a715.js\",\"6773\",\"static/chunks/6773-1509e69c8ea411a9.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"39\",\"static/chunks/39-b2c68a85691e2a75.js\",\"8854\",\"static/chunks/8854-324ed598a153b6a1.js\",\"3500\",\"static/chunks/app/%5Blocale%5D/(site)/page-8302dc3f65074d52.js\"],\"BailoutToCSR\"]\n1f:I[83347,[\"2653\",\"static/chunks/2653-863733b582c9aea0.j"])</script><script>self.__next_f.push([1,"s\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"9776\",\"static/chunks/9776-3912a0f45d5f98bf.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"4613\",\"static/chunks/4613-03829a92df259788.js\",\"6082\",\"static/chunks/app/%5Blocale%5D/not-found-a0db1f769850faa2.js\"],\"default\"]\n19:[[[\"$\",\"link\",null,{\"rel\":\"preload\",\"href\":\"/static/assets/styles/bundles/site.bundle.css?v=1789534152205\",\"as\":\"style\"}],[\"$\",\"link\",null,{\"rel\":\"stylesheet\",\"href\":\"/static/assets/styles/bundles/site.bundle.css?v=1789534152205\",\"precedence\":\"default\"}],[\"$\",\"$L8\",null,{\"href\":\"/static/assets/styles/bundles/site.bundle.css?v=1789534152205\"}]],[[\"$\",\"link\",null,{\"rel\":\"preload\",\"href\":\"/static/assets/styles/bundles/notfound.bundle.css?v=1789534152205\",\"as\":\"style\"}],[\"$\",\"link\",null,{\"rel\":\"stylesheet\",\"href\":\"/static/assets/styles/bundles/notfound.bundle.css?v=1789534152205\",\"precedence\":\"default\"}],[\"$\",\"$L8\",null,{\"href\":\"/static/assets/styles/bundles/notfound.bundle.css?v=1789534152205\"}]],[\"$\",\"$L1a\",null,{\"locale\":\"zh-tw\",\"messages\":{\"404\":{\"app\":{\"containers\":{\"NotFound\":{\"header\":\"找不到頁面 - QR TIGER\",\"description\":\"您正在尋找的頁面可能已被移除、更改名稱,或是暫時無法使用。\",\"homepage\":\"首頁\"}}}}},\"timeZone\":\"UTC\",\"children\":[\"$\",\"div\",null,{\"className\":\"main-container app-container \",\"children\":[[\"$\",\"$16\",null,{\"fallback\":null,\"children\":[[\"$\",\"$L1b\",null,{\"moduleIds\":[\"containers/Layout/appLayout.js -\u003e @containers/Layout/gdprBanner\"]}],[\"$\",\"$L1c\",null,{}]]}],[\"$\",\"div\",null,{\"className\":\"relative\",\"children\":[[\"$\",\"$L1d\",null,{}],[\"$\",\"div\",null,{\"className\":\"main-container-body\",\"children\":[\"$\",\"div\",null,{\"className\":\"children\",\"children\":[\"$\",\"$16\",null,{\"fallback\":null,\"children\":[\"$\",\"$L1e\",null,{\"reason"])</script><script>self.__next_f.push([1,"\":\"next/dynamic\",\"children\":[\"$\",\"$L1f\",null,{}]}]}]}]}],\"$L20\"]}]]}]}]]\n"])</script><script>self.__next_f.push([1,"21:I[12330,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"20:[\"$\",\"div\",null,{\"className\":\"footer\",\"children\":[\"$\",\"div\",null,{\"className\":\"container\",\"children\":[[\"$\",\"div\",null,{\"className\":\"social-section\",\"children\":[[\"$\",\"div\",null,{\"className\":\"subscribe\",\"children\":[[\"$\",\"section\",null,{\"children\":\"保持跟進\"}],[\"$\",\"span\",null,{\"className\":\"footer-text footer-subscribe__desc\",\"dangerouslySetInnerHTML\":{\"__html\":\"註冊我們的通訊,第一時間獲得促銷、更新和提示。\"}}],[\"$\",\"$L21\",null,{}]]}],[\"$\",\"div\",null,{\"className\":\"social-community\",\"children\":[[\"$\",\"span\",null,{\"className\":\"footer-text mb-2\",\"children\":\"加入社群\"}],[\"$\",\"div\",null,{\"className\":\"social-icons\",\"children\":[\"$L22\",\"$L23\",\"$L24\",\"$L25\",\"$L26\"]}]]}],[\"$\",\"div\",null,{\"className\":\"social-community download-app\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"footer-text\",\"children\":\"下載 QR TIGER 應用程式\"}],[\"$\",\"span\",null,{\"className\":\"footer-text mb-2\",\"children\":\"隨時製作和掃描QR碼\"}],[\"$\",\"div\",null,{\"className\":\"download-buttons\",\"children\":[\"$L27\",\"$L28\"]}]]}]]}],\"$L29\",[\"$\",\"div\",null,{\"className\":\"main-menu\",\"children\":[[\"$\",\"div\",\"footer-menu-col-0\",{\"className\":\"section text-lg-left text-left\",\"children\":[[\"$\",\"div\",\"guides\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"指南\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"faq\",{\"className\":\"faq\",\"children\":\"$L2a\"}],[\"$\",\"li\",\"contactUs\",{\"className\":\"contactUs\",\"children\":\"$L2b\"}],[\"$\",\"li\",\"helpCenter\",{\"className\":\"helpCenter\",\"children\":\"$L2c\"}]]}]]}]]}],[\"$\",\"div\",\"footer-menu-col-1\",{\"className\":\"section text-lg-left text-right text-lg-left\",\"children\":[[\"$\",\"div\",\"support\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"支持\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"mailTo\",{\"className\":\"mailTo\",\"children\":\"$L2d\"}]]}]]}]]}],[\"$\",\"div\",\"footer-menu-col-2\",{\"className\":\"section text-lg-left text-left\",\"children\":[[\"$\",\"div\",\"company\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"公司\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"aboutUs\",{\"className\":\"aboutUs\",\"children\":\"$L2e\"}],[\"$\",\"li\",\"status\",{\"className\":\"status\",\"children\":\"$L2f\"}],[\"$\",\"li\",\"enterpriseSolutions\",{\"className\":\"enterpriseSolutions\",\"children\":\"$L30\"}],[\"$\",\"li\",\"pricing\",{\"className\":\"pricing\",\"children\":\"$L31\"}]]}]]}]]}],[\"$\",\"div\",\"footer-menu-col-3\",{\"className\":\"section text-lg-left text-right text-lg-left\",\"children\":[[\"$\",\"div\",\"terms\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"條款\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"termsAgreements\",{\"className\":\"termsAgreements\",\"children\":\"$L32\"}],[\"$\",\"li\",\"termsOfAcceptableUse\",{\"className\":\"termsOfAcceptableUse\",\"children\":\"$L33\"}],[\"$\",\"li\",\"privacyPolicy\",{\"className\":\"privacyPolicy\",\"children\":\"$L34\"}],[\"$\",\"li\",\"cookiesPolicy\",{\"className\":\"cookiesPolicy\",\"children\":\"$L35\"}]]}]]}]]}]]}],[\"$\",\"div\",null,{\"className\":\"vtline\"}],[\"$\",\"div\",null,{\"className\":\"d-flex justify-content-center m-3\",\"children\":\"$L36\"}],[\"$\",\"div\",null,{\"className\":\"text-center copy-right\",\"children\":[\"這個QR碼生成器是QR TIGER有限公司的註冊商標。\",[\"$\",\"br\",\"br\",{}],\"'QR Code' 是 DENSO WAVE INCORPORATED 的商標。 © 2026 www.qrcode-tiger.com\"]}]]}]}]\n"])</script><script>self.__next_f.push([1,"37:I[6641,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"default\"]\n22:[\"$\",\"$L37\",null,{\"href\":\"https://www.linkedin.com/company/qrtiger/\",\"locale\":\"$undefined\",\"localeCookie\":{\"name\":\"NEXT_LOCALE\",\"sameSite\":\"lax\"},\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon linkedin-icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: LinkedIn\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-linkedin\",\"aria-hidden\":\"true\"}]}]\n38:{\"name\":\"NEXT_LOCALE\",\"sameSite\":\"lax\"}\n23:[\"$\",\"$L37\",null,{\"href\":\"https://www.youtube.com/c/QRTiger\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: YouTube\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-youtube\",\"aria-hidden\":\"true\"}]}]\n24:[\"$\",\"$L37\",null,{\"href\":\"https://www.instagram.com/qrtiger\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: Instagram\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-instagram\",\"aria-hidden\":\"true\"}]}]\n25:[\"$\",\"$L37\",null,{\"href\":\"https://www.facebook.com/QRTIGERS/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: Facebook\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-facebook\",\"aria-hidden\":\"true\"}]}]\n26:[\"$\",\"$L37\",null,{\"href\":\"https://twitter.com/qrtigers\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blan"])</script><script>self.__next_f.push([1,"k\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: X\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-x-logo\",\"aria-hidden\":\"true\"}]}]\n27:[\"$\",\"$L37\",null,{\"href\":\"https://apps.apple.com/us/app/qr-tiger-qr-code-generator/id1509675463\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"children\":[\"$\",\"img\",null,{\"src\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainFooter/appStore.webp\",\"alt\":\"Download on the App Store\",\"width\":139,\"height\":46,\"loading\":\"lazy\",\"decoding\":\"async\"}]}]\n28:[\"$\",\"$L37\",null,{\"href\":\"https://play.google.com/store/apps/details?id=com.qrtiger\u0026pli=1\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"children\":[\"$\",\"img\",null,{\"src\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainFooter/googlePlay.webp\",\"alt\":\"Get it on Google Play\",\"width\":155,\"height\":46,\"loading\":\"lazy\",\"decoding\":\"async\"}]}]\n2a:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/faq\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"常見問題\"}]\n2b:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/contact\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"聯絡我們\"}]\n2c:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/blog/help-center\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_self\",\"children\":\"幫助中心\"}]\n2d:[\"$\",\"$L37\",null,{\"href\":\"mailto:it@qrtiger.com\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_self\",\"children\":\"it@qrtiger.com\"}]\n2e:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/about\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"關於我們\"}]\n2f:[\"$\",\"$L37\",null,{\"href\":\"https://qrtiger.statuspage.io/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"狀態\"}]\n30:[\"$\",\"$L37\",null,{\"href\":\"https://enterprise.qrcode-tiger."])</script><script>self.__next_f.push([1,"com/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"企業解決方案\"}]\n31:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/payment\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_self\",\"children\":\"價格設定\"}]\n32:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/terms-and-conditions\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"條款和條件\"}]\n33:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/term-acceptable-use\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"可接受使用條款\"}]\n34:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/privacy-policy\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"隱私政策\"}]\n35:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/cookies-policy\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"Cookies 政策\"}]\n36:[\"$\",\"$L37\",null,{\"href\":\"/zh-tw\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"main-logo\",\"children\":[\"$\",\"img\",null,{\"src\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainHeader/qrtiger_logo_s.svg\",\"alt\":\"qr code generator\",\"width\":200,\"height\":59,\"loading\":\"lazy\",\"decoding\":\"async\"}]}]\n29:[\"$\",\"div\",null,{\"className\":\"resources-wrapper mt-5 mb-5\",\"children\":[[\"$\",\"div\",null,{\"className\":\"resources-header\",\"children\":\"資源\"}],[\"$\",\"div\",null,{\"className\":\"row\",\"children\":[[\"$\",\"div\",\"dynamicQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L39\"}]}],[\"$\",\"div\",\"multiUrlQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L3a\"}]}],[\"$\",\"div\",\"digitalBusinessCard\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource"])</script><script>self.__next_f.push([1,"-item\",\"children\":\"$L3b\"}]}],[\"$\",\"div\",\"bulkQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L3c\"}]}],[\"$\",\"div\",\"imageQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L3d\"}]}],[\"$\",\"div\",\"videoQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L3e\"}]}],[\"$\",\"div\",\"googleFormQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L3f\"}]}],[\"$\",\"div\",\"logoQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L40\"}]}],[\"$\",\"div\",\"analyticsQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L41\"}]}],[\"$\",\"div\",\"restaurantQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L42\"}]}],[\"$\",\"div\",\"fileQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L43\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"39:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-do-dynamic-qr-codes-work\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"動態QR碼是如何運作的?\"}]\n3a:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-does-a-multi-url-qr-code-works-and-can-benefit-your-business-smart-qr-code\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"多URL QR碼\"}]\n3b:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/digital-business-card-qr-code\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"數位名片 QR 碼\"}]\n3c:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/bulk-qr-code-generator\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"批量 QR 碼生成器\"}]\n3d:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-make-a-qr-code-of-an-image\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何為圖像製作 QR 碼\"}]\n3e:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-create-a-video-qr-code-\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何為視頻創建QR碼\"}]\n3f:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-make-a-qr-code-for-a-google-form\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何為 Google Form 創建 QR 碼?\"}]\n40:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/qr-code-with-logo\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何製作帶有標誌的QR碼\"}]\n41:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/track-qr-code-with-google-analytics\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何使用 Google Analytics 追蹤 QR 碼\"}]\n42:[\"$\",\"$L37\",null,{\"href\""])</script><script>self.__next_f.push([1,":\"https://www.qrcode-tiger.com/zh-tw/how-to-make-your-qr-code-in-restaurant\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何製作餐廳菜單的QR碼\"}]\n43:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/file-qr-code-converter\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"QR 碼轉換器\"}]\n"])</script><script>self.__next_f.push([1,"48:I[98873,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"default\"]\n49:I[52616,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"default\"]\n4a:I[95596,[\"2653\",\"static/chunks/2653-863733b582c9aea0.js\",\"7603\",\"static/chunks/7603-b77ddaf6fd377863.js\",\"261\",\"static/chunks/261-f0452d31d444623d.js\",\"8322\",\"static/chunks/8322-b82229900867ab74.js\",\"2299\",\"static/chunks/2299-5478100c08596d77.js\",\"2420\",\"static/chunks/2420-ab7c377bb68e38bc.js\",\"8696\",\"static/chunks/8696-77e50e024bac6f99.js\",\"1762\",\"static/chunks/1762-632af19e417c16c2.js\",\"1629\",\"static/chunks/1629-53e8e90b84a417a3.js\",\"8783\",\"static/chunks/8783-c23829a7a18f08c2.js\",\"7968\",\"static/chunks/app/%5Blocale%5D/(cms)/%5Bslug%5D/page-b388162aa0310e42.js\"],\"default\"]\n47:{\"header\":\"找不到頁面 - QR TIGER\",\"description\":\"您正在尋找的頁面可能已被移除、更改名稱,或是暫時無法使用。\",\"homepage\":\"首頁\"}\n46:{\"NotFound\":\"$47\"}\n45:{\"containers\":\"$46\"}\n44:{\"app\":\"$45\"}\n4b:T456c,"])</script><script>self.__next_f.push([1,"\u003cp\u003e\u003cb\u003e能否使用HTML(超文本标记语言)生成QR码? \u003c/b\u003e\u003c/p\u003e\u003cp\u003e簡短的答案是肯定的,但僅使用HTML無法創建QR碼。您需要JavaScript或其他QR碼軟件來生成QR碼本身。 \u003c/p\u003e\u003cp\u003e在這篇文章中,您將學習如何使用HTML和JavaScript創建QR碼,以及何時更適合使用高級QR碼生成器來進行編輯、追蹤和擴展等功能。 \u003c/p\u003e\u003cp\u003e\u003cb\u003e目錄 \u003c/b\u003e\u003c/p\u003e\u003col class=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; font-family: Georgia, serif; font-size: 17px;\"\u003e\u003col\u003e\u003cli\u003e\u003ca href=\"#toc_what_is_a_qr_code_html_generator\"\u003e什麼是QR碼HTML產生器? \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_how_to_generate_a_qr_code_using_html_and_javascript\"\u003e如何使用HTML和JavaScript生成QR碼 \u003c/a\u003e\u003cul\u003e\u003cli\u003e\u003ca href=\"#toc_step_1_create_an_html_file\"\u003e第一步:創建一個HTML文件 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_step_2_add_the_javascript\"\u003e第2步:添加JavaScript \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_step_3_save_and_open_the_file\"\u003e第三步:保存並打開文件 \u003c/a\u003e\u003c/li\u003e\u003c/ul\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_where_htmlbased_qr_code_generation_falls_short\"\u003eHTML-based QR code generation的不足之處 \u003c/a\u003e\u003cul\u003e\u003cli\u003e\u003ca href=\"#toc_1_html_alone_cannot_generate_qr_codes\"\u003eHTML本身無法生成QR碼。 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_2_knowledge_of_javascript_is_a_necessity_\"\u003eJavaScript的知識是必需的。 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_3_limited_customization_options\"\u003e有限的定制選項 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_4_no_analytics_or_tracking\"\u003e無分析或追蹤 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_5_html_can_create_static_qr_codes_only\"\u003eHTML只能創建靜態QR碼 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_6_security_limitations\"\u003e安全限制 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_7_difficulty_in_maintenance\"\u003e維護困難 \u003c/a\u003e\u003c/li\u003e\u003c/ul\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_why_do_you_need_an_advanced_qr_code_generator_for_html\"\u003e為什麼你需要一個進階的HTML QR碼生成器? \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_landing_page_qr_code_a_nocode_solution\"\u003e登陸頁面QR碼:無代碼解決方案 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_how_to_create_an_html_qr_code_no_coding\"\u003e如何創建一個HTML QR碼(無需編碼) \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_why_qr_tiger_is_the_best_qr_code_generator_with_html_code\"\u003e為什麼 QR TIGER 是最好的 QR 碼生成器與 HTML 代碼? \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_summing_up\"\u003e總結 \u003c/a\u003e\u003c/li\u003e\u003cli\u003e\u003ca href=\"#toc_faq\"\u003e常見問題 \u003c/a\u003e\u003c/li\u003e\u003c/ol\u003e\u003c/ol\u003e\u003ch2 id=\"toc_what_is_a_qr_code_html_generator\"\u003e什麼是QR碼HTML產生器? \u003c/h2\u003e\u003cp\u003e一個 \u003ca href=\"https://www.qrcode-tiger.com/zh-tw/html-qr-code-generator\"\u003eHTML QR碼生成器\u003c/a\u003e 是一個基於網頁的解決方案,使用HTML和JavaScript或API在網頁上創建和顯示QR碼。\u003c/p\u003e\u003cp\u003e對於快速、簡便的QR碼生成,像QR TIGER這樣的在線平台讓您無需HTML編碼即可製作一個。 \u003c/p\u003e\u003ch2 id=\"toc_how_to_generate_a_qr_code_using_html_and_javascript\"\u003e如何使用HTML和JavaScript生成QR碼 \u003c/h2\u003e\u003cp\u003e你可以使用HTML與一個小的JavaScript庫結合來創建QR碼。 \u003c/p\u003e\u003cp\u003e記得, 超文字標記語言 是用來建立您的網頁,而JavaScript處理QR碼生成。\u003c/p\u003e\u003cp\u003e現在,讓我們找出如何使用這些工具來創建一個HTML QR碼。 \u003c/p\u003e\u003ch3 id=\"toc_step_1_create_an_html_file\"\u003e\u003cb\u003e第一步:創建一個HTML文件 \u003c/b\u003e\u003c/h3\u003e\u003cpicture\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/create-an-html-filejpg_800.webp\" type=\"image/webp\"\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/create-an-html-filejpg_800.jpeg\" type=\"image/jpeg\"\u003e\u003cimg src=\"https://media.qrtiger.com/blog/2026/02/create-an-html-filejpg_800.jpeg\" width=\"800\" height=\"100%\" loading=\"lazy\" style=\"width: 100%;\" alt=\"Create HTML file\" title=\"Start by creating a file named index.html\"\u003e\u003c/picture\u003e\u003cp\u003e首先,您需要一個HTML來創建QR碼。從創建一個名為index.html的文件開始。這個文件將保存QR碼生成器的結構。 \u003c/p\u003e\u003cp\u003e接下來,在您的文件中,添加一個文本輸入框,用戶可以輸入URL或文本,一個按鈕來生成QR碼,以及一個空白處顯示QR碼。在這裡,您也可以鏈接到一個實際生成QR碼的庫。 \u003c/p\u003e\u003cp\u003e最後,您的HTML文件將看起來像這樣: \u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e    \u003cmeta charset=\"UTF-8\"\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003ctitle\u003eQR Code Generator\u003c/title\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003c!-- QR code generation library --\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e    \u003cscript src=\"https://cdn.jsdelivr.net/gh/davidshimjs/qrcodejs/qrcode.min.js\"\u003e\u003c/script\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003c/head\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003cbody\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e生成QR碼 \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e    \u003cinput type=\"text\" id=\"qr-text\" placeholder=\"輸入文字或網址\"\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e    \u003cbutton onclick=\"generateQRCode()\"\u003e生成QR碼\u003c/button\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e    \u003c!-- 這裡將顯示QR碼 --\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003c/span\u003e\u003c/p\u003e\u003cdiv id=\"qrcode\"\u003e\u003c/div\u003e \u003cp\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e    \u003cscript src=\"script.js\"\u003e\u003c/script\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003c/body\u003e \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e\u003c/html\u003e \u003c/span\u003e\u003c/p\u003e\u003ch3 id=\"toc_step_2_add_the_javascript\"\u003e\u003cb\u003e第2步:添加JavaScript \u003c/b\u003e\u003c/h3\u003e\u003cpicture\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/add-the-javascriptjpg_800.webp\" type=\"image/webp\"\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/add-the-javascriptjpg_800.jpeg\" type=\"image/jpeg\"\u003e\u003cimg src=\"https://media.qrtiger.com/blog/2026/02/add-the-javascriptjpg_800.jpeg\" width=\"800\" height=\"100%\" loading=\"lazy\" style=\"width: 100%;\" alt=\"Add the JavaScript\" title=\"Create a second file named script.js\"\u003e\u003c/picture\u003e\u003cp\u003e創建第二個名為script.js的文件。這個文件用於讀取用戶輸入並生成QR碼。 \u003c/p\u003e\u003cp\u003e當第二個檔案被創建時,腳本會取得輸入的文本,清除任何現有的QR碼,並創建一個新的。 \u003c/p\u003e\u003cp\u003e這是您的腳本文件將會看起來的方式: \u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e生成QR碼的函數() { \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003econst text = document.getElementById(\"qr-text\").value.trim(); \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003eif (!text) { \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003ealert(\"請輸入一些文字或網址\"); \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003ereturn; \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e} \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003edocument.getElementById(\"qrcode\").innerHTML = \"\"; \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003enew QRCode(document.getElementById(\"qrcode\"), { \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003etext: text, \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e寬度: 150, \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e高度: 150 \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e}); \u003c/span\u003e\u003c/p\u003e\u003cp\u003e\u003cspan style=\"font-family: \"Courier New\";\"\u003e{} \u003c/span\u003e\u003c/p\u003e\u003ch3 id=\"toc_step_3_save_and_open_the_file\"\u003e\u003cb\u003e第三步:保存並打開文件 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e現在您應該將我們之前生成的兩個文件都保存在同一個文件夾中。接下來,在任何網頁瀏覽器中打開 index.html 文件。 \u003c/p\u003e\u003cp\u003e現在,輸入一個網址或文字,然後點擊生成按鈕。 \u003c/p\u003e\u003cp\u003e這就是使用HTML生成QR碼的方法。 \u003c/p\u003e\u003ch2 id=\"toc_where_htmlbased_qr_code_generation_falls_short\"\u003eHTML-based QR code generation的不足之處 \u003c/h2\u003e\u003cpicture\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/disadvantages-of-html-based-qr-code-generationjpg_800.webp\" type=\"image/webp\"\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/disadvantages-of-html-based-qr-code-generationjpg_800.jpeg\" type=\"image/jpeg\"\u003e\u003cimg src=\"https://media.qrtiger.com/blog/2026/02/disadvantages-of-html-based-qr-code-generationjpg_800.jpeg\" width=\"800\" height=\"100%\" loading=\"lazy\" style=\"width: 100%;\" alt=\"Disadvantages of HTML-based code\" title=\"Reasons why coded QR is not advisable\"\u003e\u003c/picture\u003e\u003cp\u003e考慮到使用HTML和JavaScript生成QR碼的複雜性,值得花點時間了解這種方法的不足之處。這將幫助您快速且自信地決定哪種方法最適合您的需求。 \u003c/p\u003e\u003ch3 id=\"toc_1_html_alone_cannot_generate_qr_codes\"\u003e\u003cb\u003eHTML本身無法生成QR碼。 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e單獨的 HTML 檔案無法生成 QR 碼,因為它只是一種標記語言。您需要將 HTML 與 JavaScript 函式庫或第三方 API(應用程式介面)結合起來,才能將 HTML 檔案轉換為 QR 碼。 \u003c/p\u003e\u003ch3 id=\"toc_2_knowledge_of_javascript_is_a_necessity_\"\u003e\u003cb\u003eJavaScript的知識是必需的。 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e在JavaScript中,即使是腳本中的小錯誤也可能導致整個過程出錯。這使得對JavaScript有良好的工作知識絕對必要。 \u003c/p\u003e\u003ch3 id=\"toc_3_limited_customization_options\"\u003e\u003cb\u003e有限的定制选项 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e使用HTML和JavaScript生成的QR碼提供非常有限的自定義選項。因此,您無法輕鬆地調整設計以符合您的品牌識別。 \u003c/p\u003e\u003ch3 id=\"toc_4_no_analytics_or_tracking\"\u003e\u003cb\u003e無分析或追蹤 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e當您使用HTML生成QR碼時,無法訪問分析或追踪功能。對於大規模品牌活動,這些見解對於保持完全控制並有效衡量表現至關重要。 \u003c/p\u003e\u003ch3 id=\"toc_5_html_can_create_static_qr_codes_only\"\u003e\u003cb\u003eHTML只能創建靜態QR碼 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e與專用的QR碼生成器不同,它提供動態QR碼,HTML只能創建靜態QR碼。因此,如果您需要稍後進行更改,您將不得不從頭開始重新生成QR碼。 \u003c/p\u003e\u003ch3 id=\"toc_6_security_limitations\"\u003e\u003cb\u003e安全限制 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e基於HTML的QR碼並不提供加密、存取控制、密碼保護或符合ISO認證等功能。因此,無法保證您嵌入的數據受到保護。 \u003c/p\u003e\u003ch3 id=\"toc_7_difficulty_in_maintenance\"\u003e\u003cb\u003e維護困難 \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e如果您對編碼或程式設計不太熟悉,管理由HTML製作的QR碼可能會非常困難,因為每次更新都需要更改代碼、重新部署和測試。 \u003c/p\u003e\u003ch2 id=\"toc_why_do_you_need_an_advanced_qr_code_generator_for_html\"\u003e為什麼你需要一個進階的HTML QR碼生成器? \u003c/h2\u003e\u003cp\u003e使用專門的QR碼軟件,您可以創建QR碼,而無需編碼或技術專業知識。 \u003c/p\u003e\u003cp\u003e它與自動化平台兼容並提供 \u003ca href=\"https://www.qrcode-tiger.com/zh-tw/api-documentation\"\u003eQR碼API文件\u003c/a\u003e 開發人員可以在軟體應用程式中直接生成QR碼。\u003c/p\u003e\u003cp\u003e有些網站可以直接提供 HTML 代碼,這樣您就可以輕鬆地將您創建的 QR 碼嵌入到您的網站或任何網頁上,而不必煩惱編碼。 \u003c/p\u003e\u003cp\u003e一個專業的QR碼生成器還提供完整的定制選項,讓您可以輕鬆設計符合品牌形象的QR碼。 \u003c/p\u003e\u003cp\u003e此外,它支持動態QR碼,使您能夠在部署後更新其內容並實時監控其性能。 \u003c/p\u003e\u003cp\u003e這些功能對於長期活動和持續的促銷活動尤其有價值,靈活性和控制是必不可少的。 \u003c/p\u003e\u003ch2 id=\"toc_landing_page_qr_code_a_nocode_solution\"\u003e登陸頁面QR碼:無代碼解決方案 \u003c/h2\u003e\u003cpicture\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/landing-page-qr-code-a-no-code-solutionjpg_800.webp\" type=\"image/webp\"\u003e\u003csource srcset=\"https://media.qrtiger.com/blog/2026/02/landing-page-qr-code-a-no-code-solutionjpg_800.jpeg\" type=\"image/jpeg\"\u003e\u003cimg src=\"https://media.qrtiger.com/blog/2026/02/landing-page-qr-code-a-no-code-solutionjpg_800.jpeg\" width=\"800\" height=\"100%\" loading=\"lazy\" style=\"width: 100%;\" alt=\"Landing page QR code\" title=\"QR code solution for free landing page\"\u003e\u003c/picture\u003e\u003cp\u003e一 \u003ca href=\"https://www.qrcode-tiger.com/zh-tw/qr-code-generator/landing-page\"\u003e首頁QR碼\u003c/a\u003e 是一種靈活且實用的方式,通過單次掃描便可分享適用於移動設備的內容。這是在高級QR碼軟件如QR TIGER中提供的解決方案。\u003c/p\u003e\u003cp\u003e這個QR碼打開的登陸頁面是直接在QR碼平台內部託管和管理的。 \u003c/p\u003e\u003cp\u003e您可以設計頁面,加入您想要的文字、圖片、影片、連結、按鈕和其他互動元素,而無需撰寫任何一行程式碼。如果您想自行編寫一些程式碼,也可以使用“程式碼檢視”選項。 \u003c/p\u003e\u003cp\u003e這使它成為行銷人員、商業專業人士和活動經理的理想解決方案,他們希望將他們的QR碼與品牌形象和溝通目標保持一致。 \u003c/p\u003e\u003ch2 id=\"toc_how_to_create_an_html_qr_code_no_coding\"\u003e如何創建一個HTML QR碼(無需編碼) \u003c/h2\u003e\u003cp\u003e按照以下簡單步驟創建一個無代碼QR碼來連接一個登陸頁面: \u003c/p\u003e\u003cp\u003e參觀一個 \u003ca href=\"https://www.qrcode-tiger.com\"\u003e動態QR碼生成器\u003c/a\u003e 在線。\u003c/p\u003e\u003cp\u003e從解決方案儀表板中選擇H5 QR碼選項。 \u003c/p\u003e\u003cp\u003e使用現有的網頁設計元素添加和設計您的H5頁面。 \u003c/p\u003e\u003cp\u003e4. 選擇性: 如需直接編碼或編程,請切換到代碼視圖 \u003c/\u003e。 \u003c/p\u003e\u003cp\u003e一旦您的頁面準備好,請點擊生成以將HTML轉換為QR碼。 \u003c/p\u003e\u003cp\u003e定制並下載 QR 碼,支援高品質的圖像格式,如 PNG、SVG 或 EPS。 \u003c/p\u003e\u003cp\u003e查看HTML代碼,請點擊 \u003cb\u003e\u003ci\u003e嵌入QR碼 \u003c/i\u003e\u003c/b\u003e複製。 \u003c/p\u003e\u003cp\u003e\u003cb\u003e提醒: \u003c/b\u003e在您的活動或網頁中使用QR碼之前,請始終測試以確保它在各種設備上運作順暢。 \u003ca class=\"blog-bottom-create-a-qr-code\" href=\"https://www.qrcode-tiger.com/zh-tw/register\" target=\"_blank\"\u003e\u003cimg src=\"https://qrtiger-banners.s3.amazonaws.com/qrtiger.gif\" style=\"width: 100%;\" alt width height title\u003e\u003c/a\u003e\u003c/p\u003e\u003ch2 id=\"toc_why_qr_tiger_is_the_best_qr_code_generator_with_html_code\"\u003e為什麼 QR TIGER 是最好的 QR 碼生成器,具有 HTML 代碼 \u003c/h2\u003e\u003cp\u003e有幾個先進的產生器可以讓您創建QR碼。但是當涉及到內置HTML代碼的時候,我們強烈推薦QR TIGER。 \u003c/p\u003e\u003cp\u003e這是企業和開發人員作為其網站QR碼生成器的首選,原因如下: \u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cb\u003e真正的平台創作: \u003c/b\u003e允許您在平台內完全創建自定義QR碼登陸頁,而無需依賴獨立的網站、CMS或主機提供商。 \u003c/li\u003e\u003cli\u003e\u003cb\u003e列印後仍可編輯 \u003c/b\u003e其動態QR碼用於登陸頁面,讓您隨時更新登陸頁面的內容,即使QR碼已經印刷或分發。 \u003c/li\u003e\u003cli\u003e\u003cb\u003e無需技術專業知識: \u003c/b\u003e一個基於視覺和分區的編輯器讓非技術人員可以輕鬆創建和管理登陸頁面的QR碼。 \u003c/li\u003e\u003cli\u003e\u003cb\u003e簡單的API整合: \u003c/b\u003e\u003ca href=\"https://www.qrcode-tiger.com/zh-tw/api-documentation\"\u003eAPI 文件\u003c/a\u003e 通過自動化整個過程,使在其他軟件應用程序中生成QR碼變得更快、更順暢和更具可擴展性。\u003c/li\u003e\u003cli\u003e\u003cb\u003e隨時隨地的HTML代碼: \u003c/b\u003eQR TIGER會自動生成HTML代碼,讓您可以將QR碼直接嵌入您的網站,而無需進行繁瑣的手動編碼。 \u003c/li\u003e\u003cli\u003e\u003cb\u003e更大的品牌控制: \u003c/b\u003e它提供對登陸頁和QR碼設計的完全控制,包括顏色、佈局和符合您品牌形象的CTA標籤。 \u003c/li\u003e\u003cli\u003e\u003cb\u003e安全可靠的主機: \u003c/b\u003eQR TIGER 重視 數據安全 通過遵守ISO 27001、GDPR、CCPA和SSO標準,使其成為值得信賴的平台,適用於具有大規模、長期活動的公司。\u003c/li\u003e\u003c/ul\u003e\u003ch2 id=\"toc_summing_up\"\u003e總結 \u003c/h2\u003e\u003cp\u003e你已經知道如何使用HTML和JavaScript生成QR碼,以及它在功能和可擴展性方面存在的不足。 \u003c/p\u003e\u003cp\u003e我們建議使用一個先進的QR碼生成器與HTML代碼,以使創建和管理您的QR碼變得簡單和無壓力。 \u003c/p\u003e\u003cp\u003e你可以完全控制你的QR碼,無論是更新內容、自定義設計以符合你的品牌、隨時間追蹤效能,或將它們嵌入網站。 \u003ca class=\"blog-free-ebooks-for-qr-codes\" href=\"https://www.qrcode-tiger.com/zh-tw/ebook\" target=\"_blank\"\u003e\u003cimg src=\"https://qrtiger-banners.s3.amazonaws.com/free+ebook.gif\" style=\"width: 100%;\" alt=\"Free ebooks for QR codes\" width height title\u003e\u003c/a\u003e\u003c/p\u003e\u003ch2 id=\"toc_faq\"\u003e常見問題 \u003c/h2\u003e\u003ch3 id=\"toc_what_software_do_i_need_for_html\"\u003e\u003cb\u003e我需要什麼軟體來編寫HTML? \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e對於HTML,你只需要一個簡單的文本編輯器,如記事本或TextEdit,或者更豐富功能的編輯器如VS Code。一旦文件以.html擴展名保存,你可以在任何網頁瀏覽器中打開它,如Chrome、Firefox或Safari,來查看它的外觀。 \u003c/p\u003e\u003ch3 id=\"toc_what_are_the_7_basic_tags_of_html\"\u003e\u003cb\u003eHTML的七個基本標籤是什麼? \u003c/b\u003e\u003c/h3\u003e\u003cp\u003e一些最基本和常用的標籤包括\u003chtml\u003e,\u003chead\u003e,\u003ctitle\u003e \u003c/p\u003e\u003cp\u003e, \u003c/p\u003e\u003ch1\u003e, \u003cp\u003e 和 \u003ca\u003e . \u003c/a\u003e\u003c/p\u003e\u003c/h1\u003e\u003ch3 id=\"toc_definition_of_terms\"\u003e\u003ca\u003e\u003cb\u003e術語定義 \u003c/b\u003e\u003c/a\u003e\u003c/h3\u003e\u003cp\u003e\u003ca\u003e\u003cb\u003eHTML \u003c/b\u003eHTML 代表超文本標記語言。它是告訴網頁瀏覽器要顯示什麼內容以及如何組織的標準語言,例如文字、圖片、連結、按鈕和表單。 \u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003ca\u003e\u003cb\u003eJavaScript \u003c/b\u003e一種編程語言,允許網頁對用戶操作做出反應,實時更新內容,並在不重新加載頁面的情況下執行邏輯。 \u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003ca\u003e\u003cb\u003eAPI \u003c/b\u003e應用程式介面的縮寫是 Application Programming Interface。它是一組規則和工具,讓一個應用程式可以使用另一個應用程式的功能或數據,而不需要知道它是如何建立的。 \u003c/a\u003e\u003ca class=\"blog-company-banner\" href=\"https://www.qrcode-tiger.com\" target=\"_blank\"\u003e\u003cimg src=\"https://qrtiger-banners.s3.amazonaws.com/blog-banner-company-logo.jpg\" style=\"width: 100%;\" alt=\"Brands using QR codes\" width height title\u003e\u003c/a\u003e\u003c/p\u003e"])</script><script>self.__next_f.push([1,"4d:{\"type\":\"faq\",\"status\":true,\"faq\":\"[{\\\"que\\\":\\\"What software do I need for HTML?\\\",\\\"ans\\\":\\\"For HTML, all you need is a simple text editor such as Notepad or TextEdit, or more feature-rich editors like VS Code. Once the file is saved with an .html extension, you can open it in any web browser, such as Chrome, Firefox, or Safari, to see how it looks.\\\"},{\\\"que\\\":\\\"What are the 7 basic tags of HTML?\\\",\\\"ans\\\":\\\"Some of the most basic and commonly used tags include \u003chtml\u003e, \u003chead\u003e, \u003ctitle\u003e \\\\n\\\\n\u003cbody\u003e, \u003ch1\u003e, \u003cp\u003e and \u003ca\u003e .\\\"}]\"}\n4e:{\"type\":\"howto\",\"status\":true,\"howto\":\"[{\\\"step\\\":\\\"First, you need an HTML to create QR code. Start by creating a file named index.html. This file will hold the structure of the QR code generator. \\\",\\\"name\\\":\\\"Create an HTML file\\\"},{\\\"step\\\":\\\"Create a second file named script.js. This is the file that reads user input and generates the QR code. \\\",\\\"name\\\":\\\"Add the JavaScript\\\"},{\\\"step\\\":\\\"Now you should save both the files we generated earlier in the same folder. Next, open the index.html file in any web browser.\\\",\\\"name\\\":\\\"Save and open the file\\\"}]\"}\n4c:[\"$4d\",\"$4e\"]\n"])</script><script>self.__next_f.push([1,"3:[\"$\",\"$L1a\",null,{\"locale\":\"zh-tw\",\"messages\":{\"404\":\"$44\",\"blog\":{\"app\":{\"containers\":{\"Blog\":{\"header\":\"部落格 - 免費自訂 QR 碼製作者和創建者,可加入標誌 | QR TIGER\",\"helpHeader\":\"幫助中心 - 免費自訂 QR 碼製造和創建工具,帶有標誌 | QR TIGER\",\"codeQrGenerator\":\"用於製作帶有標誌的自定義QR碼的QR碼生成器\",\"home\":\"家\",\"blog\":\"部落格\",\"qrHelp\":\"QRTIGER 說明中心\",\"qrHelpDesc\":\"我們可以如何幫助您?\",\"notHelpFound\":\"找不到符合您搜尋的幫助文章。\",\"helpPage\":\"幫助中心\",\"bestQrCode\":\"最佳的 QR 碼生成器\",\"update\":\"更新\",\"by\":\"透過\",\"reviewedBy\":\"審查者\",\"author\":\"作者\",\"backToHome\":\"返回\",\"categoryFilters\":\"類別篩選器:\",\"allArticles\":\"所有文章\",\"more\":\"更多 +\",\"hide\":\"顯示較少\",\"customQR\":\"自訂QR碼\",\"emailQR\":\"Email QR碼\",\"menuQR\":\"菜單QR碼\",\"murlQR\":\"多URL QR碼\",\"smediaQR\":\"社交媒體\",\"fileQR\":\"File QR 碼\",\"vCardQR\":\"vCard QR 碼\",\"latestArticle\":\"最新文章\",\"notFound\":\"找不到符合提供的搜尋文字的記錄\",\"qrBlog\":\"QRTIGER部落格\",\"qrBlogDesc\":\"保持對最新的 QR Code 創新和實踐方法的了解。\",\"mostPopularArtical\":\"最受歡迎的文章\",\"otherArticles\":\"其他可閱讀的文章\",\"articlesByAuthor\":\"最近的{名字}文章\",\"writtenByHuman\":\"由人類撰寫\",\"contentWriter\":\"QR TIGER的內容撰寫師\",\"publishedOn\":\"已發表於\"}}}}},\"timeZone\":\"UTC\",\"children\":[\"$\",\"div\",null,{\"className\":\"main-blog-container\",\"children\":[\"$\",\"div\",null,{\"className\":\"main-container blog-container single-blog\",\"children\":[\"$\",\"div\",null,{\"className\":\"relative\",\"children\":[\"$\",\"div\",null,{\"className\":\"main-blog-container-body\",\"children\":[[\"$\",\"$L48\",null,{\"onLanguageChange\":\"$undefined\",\"isBot\":false,\"isHomeBlog\":false,\"locales\":[\"en\",\"pt\",\"nl\",\"da\",\"sv\",\"de\",\"es\",\"id\",\"ms\",\"fr\",\"nb\",\"it\",\"ro\",\"pl\",\"zh-cn\",\"zh-tw\",\"tr\",\"fi\",\"ja\",\"ko\",\"hu\",\"ru\",\"vi\",\"ar\",\"th\",\"hi\",\"el\",\"bn\"]}],[\"$\",\"div\",null,{\"className\":\"children\",\"children\":[[\"$\",\"$L49\",null,{\"slug\":\"how-to-generate-a-qr-code-using-html\",\"locale\":\"zh-tw\"}],[\"$\",\"$L4a\",null,{\"content\":{\"tags\":[],\"categories\":[\"6466de97df810b1dee4ce037\"],\"status\":\"published\",\"schemaData\":[{\"type\":\"faq\",\"status\":true,\"faq\":\"[{\\\"que\\\":\\\"What software do I need for HTML?\\\",\\\"ans\\\":\\\"For HTML, all you need is a simple text editor such as Notepad or TextEdit, or more feature-rich editors like VS Code. Once the file is saved with an .html extension, you can open it in any web browser, such as Chrome, Firefox, or Safari, to see how it looks.\\\"},{\\\"que\\\":\\\"What are the 7 basic tags of HTML?\\\",\\\"ans\\\":\\\"Some of the most basic and commonly used tags include \u003chtml\u003e, \u003chead\u003e, \u003ctitle\u003e \\\\n\\\\n\u003cbody\u003e, \u003ch1\u003e, \u003cp\u003e and \u003ca\u003e .\\\"}]\"},{\"type\":\"howto\",\"status\":true,\"howto\":\"[{\\\"step\\\":\\\"First, you need an HTML to create QR code. Start by creating a file named index.html. This file will hold the structure of the QR code generator. \\\",\\\"name\\\":\\\"Create an HTML file\\\"},{\\\"step\\\":\\\"Create a second file named script.js. This is the file that reads user input and generates the QR code. \\\",\\\"name\\\":\\\"Add the JavaScript\\\"},{\\\"step\\\":\\\"Now you should save both the files we generated earlier in the same folder. Next, open the index.html file in any web browser.\\\",\\\"name\\\":\\\"Save and open the file\\\"}]\"}],\"isTranslated\":true,\"_id\":\"697ffc39490e1dbdfea54b24\",\"slug\":\"how-to-generate-a-qr-code-using-html\",\"title\":\"如何使用HTML生成QR碼:簡易指南\",\"meta_title\":\"如何使用HTML生成QR碼:簡易指南\",\"meta_description\":\"想要透過編碼來創建QR碼嗎?了解如何使用HTML和JavaScript生成QR碼。\",\"meta_tags\":\"\",\"post_image\":\"https://media.qrtiger.com/blog/2026/06/how-to-generate-a-qr-code-using-htmljpg_800.jpeg\",\"post_image_webp\":\"https://media.qrtiger.com/blog/2026/06/how-to-generate-a-qr-code-using-htmljpg_800.webp\",\"date\":\"2026-02-26T17:52:00.000Z\",\"author\":\"63d21df1b2ec0316dd4001b4\",\"post_content\":\"$4b\",\"createdAt\":\"2026-02-02T01:22:01.943Z\",\"updatedAt\":\"2026-09-11T05:11:19.664Z\",\"__v\":2,\"relativeDate\":\"7 months ago\",\"lastUpdated\":\"5 days ago\",\"authorDetail\":[{\"bioTranslations\":[{\"lan\":\"af\",\"bio\":\"Ashley, 'n veelvuldige woordekunstenaar, besit 'n diep passie vir storievertel. Puttend uit 'n agtergrond in kollegiale joernalistiek en 'n diens as inhoudskrywer vir QR TIGER, skep sy vaardig aangrypende verhale wat met SEO-tegnieke deurdrenk is en resoneer met lesers.\\n\\nAshley omhels 'n praktiese benadering tot leer, wat weerspieël word in haar skryfstyl—'n unieke mengsel van akkuraatheid, vindingrykheid, en opregte entoesiasme vir haar vak.\\n\\nBuite die skryfwereld dompel Ashley haarself onder in die wêreld van literatuur, geniet strategiese potte skaker en eksperimenteer met kulêre skeppings.\"},{\"lan\":\"ar\",\"bio\":\"أشلي، الكاتبة المتعددة المواهب، تمتلك شغفًا عميقًا بالسرد. مستمدة من خلفية في الصحافة الجامعية وخبرة ككاتبة محتوى لـ QR TIGER، تقوم ببناء قصص مشوقة بمهارة تمتزج فيها تقنيات SEO التي تلامس القراء.\\n\\nتتبنى أشلي نهجًا عمليًا للتعلم، وهو ما يظهر في أسلوب كتابتها - مزيج فريد من الدقة والابتكار والحماس الحقيقي لمهنتها.\\n\\nخارج نطاق الكتابة، تنغمس أشلي في عالم الأدب، وتستمتع بجولات استراتيجية في لعبة الشطرنج، وتستمتع بالتجارب في ابتكارات الطهي.\"},{\"lan\":\"bn\",\"bio\":\"আশলি, একজন বহুমুখী শব্দচিত্রকর, গল্পকথার জন্য গভীর প্রেম ধারণ করে। কলেজিয়াট জার্নালিজম এবং QR TIGER এর কন্টেন্ট লেখক হিসাবে অভিযোগের পেছনে থাকা থেকে, তিনি পাঠকদের সাথে সম্পর্কিত SEO কৌশলসহ লোকচিত্রমূলক নারী সুন্দর করে তৈরি করে।\\n\\nআশলি এক হাতে করা শিখার উপায় ধরে রাখে, যা তার লেখার শৈলীতে প্রতিফলিত হয়- সঠিকতা, আবিষ্কারবাদ এবং তার ক্রাফটের জন্য আসক্তি।\\n\\nলেখার খাতায় বাইরে, আশলি সাহিত্যের বিশ্বে মুখোমুখি হয়, পরিকল্পনামূলক চেস খেলা এবং রান্নার সৃষ্টি পরীক্ষা করা থেকে উপভোগ করেন।\"},{\"lan\":\"cs\",\"bio\":\"Ashley, všestranná autorka, má hlubokou vášeň pro vyprávění příběhů. Čerpající ze zkušeností z vysokoškolské žurnalistiky a z působení jako copywriter pro QR TIGER, zručně tvoří zaujímavé příběhy proplétané SEO technikami, které rezonují s čtenáři.\\n\\nAshley se učení ujímá praktickým způsobem, což se odráží v jejím stylu psaní - unikátní směs přesnosti, invence a opravdové nadšení pro své řemeslo.\\n\\nMimo psaní se Ashley ponořuje do světa literatury, užívá si strategických partií šachu a ráda experimentuje s kulinářskými kreacemi.\"},{\"lan\":\"da\",\"bio\":\"Ashley, en alsidig ordkunstner, besidder en dyb lidenskab for fortælling. Med baggrund i collegial journalistik og erfaring som indholdsforfatter for QR TIGER, skaber hun dygtigt engagerende fortællinger med SEO-teknikker, der resonerer med læserne.\\n\\nAshley omfavner en hands-on tilgang til læring, hvilket afspejles i hendes skrivestil - en unik blanding af nøjagtighed, opfindsomhed og ægte entusiasme for sit håndværk.\\n\\nUden for skriveverdenen fordyber Ashley sig i litteraturens verden, forkæler sig med strategiske partier skak og nyder at eksperimentere med kulinariske kreationer.\"},{\"lan\":\"nl\",\"bio\":\"Ashley, een veelzijdige woordkunstenaar, bezit een diepe passie voor verhalen vertellen. Puttend uit een achtergrond in universitaire journalistiek en een periode als content schrijver voor QR TIGER, creëert ze vaardig boeiende verhalen doordrenkt met SEO-technieken die resoneren met lezers.\\n\\nAshley omarmt een hands-on benadering van leren, wat tot uiting komt in haar schrijfstijl - een unieke mix van nauwkeurigheid, inventiviteit en oprechte enthousiasme voor haar vak.\\n\\nBuiten het domein van schrijven dompelt Ashley zich onder in de wereld van literatuur, geeft zich over aan strategische potjes schaken en geniet van het experimenteren met culinaire creaties.\"},{\"lan\":\"fi\",\"bio\":\"Ashley, monipuolinen sanaseppä, omaa syvän intohimon tarinankerrontaan. Hän ammentaa taustastaan korkeakoulujournalismissa ja työskentelystä sisällöntuottajana QR TIGER:lle, ja taitavasti luo mukaansatempaavia kertomuksia, joissa on SEO-tekniikoita, jotka resonoi lukijoiden kanssa.\\n\\nAshley omaksuu käytännönläheisen lähestymistavan oppimiseen, mikä näkyy hänen kirjoitustyylissään - ainutlaatuisessa sekoituksessa tarkkuutta, kekseliäisyyttä ja aitoa innostusta alaansa kohtaan.\\n\\nKirjoittamisen ulkopuolella Ashley uppoutuu kirjallisuuden maailmaan, nauttii strategisista shakkipelien hetkistä ja pitää kokeilemastaan ruoka- ja leivontaresepteistä.\"},{\"lan\":\"fr\",\"bio\":\"Ashley, une plume polyvalente, possède une profonde passion pour le récit. S'inspirant de son parcours en journalisme universitaire et de son expérience en tant que rédactrice de contenu pour QR TIGER, elle crée habilement des récits captivants imprégnés de techniques de référencement naturel qui résonnent avec les lecteurs.\\n\\nAshley adopte une approche pratique de l'apprentissage, ce qui se reflète dans son style d'écriture – un mélange unique de précision, d'inventivité et d'enthousiasme sincère pour son métier.\\n\\nEn dehors du domaine de l'écriture, Ashley se plonge dans le monde de la littérature, se livre à des parties de jeu d'échecs stratégiques et aime expérimenter en cuisine.\"},{\"lan\":\"de\",\"bio\":\"Ashley, eine vielseitige Wortschmiedin, besitzt eine tiefe Leidenschaft für das Geschichtenerzählen. Aus ihrer Erfahrung im journalistischen Bereich an der Hochschule und ihrer Tätigkeit als Content-Writer für QR TIGER schöpft sie geschickt aus SEO-Techniken, um ansprechende Erzählungen zu gestalten, die beim Leser Anklang finden.\\n\\nAshley verfolgt einen praktischen Ansatz beim Lernen, der sich in ihrem Schreibstil widerspiegelt - eine einzigartige Mischung aus Genauigkeit, Einfallsreichtum und echter Begeisterung für ihr Handwerk.\\n\\nAußerhalb des Schreibens taucht Ashley in die Welt der Literatur ein, gönnt sich strategische Partien Schach und experimentiert gerne mit kulinarischen Kreationen.\"},{\"lan\":\"el\",\"bio\":\"Η Ashley, μια ευέλικτη λογοτέχνης, διαθέτει μια βαθιά πάθος για την αφήγηση ιστοριών. Αντλώντας από την εμπειρία της στη δημοσιογραφία στο πανεπιστήμιο και ως συντάκτρια περιεχομένου για το QR TIGER, δημιουργεί επιδέξια αφηγήσεις που είναι εμπλουτισμένες με τεχνικές SEO και απηχούν στους αναγνώστες.\\n\\nΗ Ashley υιοθετεί μια πρακτική προσέγγιση στη μάθηση, η οποία αντανακλάται στο στυλ γραφής της - ένας μοναδικός συνδυασμός ακρίβειας, εφευρετικότητας και γνήσιου ενθουσιασμού για τη δουλειά της.\\n\\nΕκτός από τον χώρο της γραφής, η Ashley εμβαθύνεται στον κόσμο της λογοτεχνίας, απολαμβάνει στρατηγικά παιχνίδια σκακιού και απολαμβάνει το πειραματισμό με κουλιναρικές δημιουργίες.\"},{\"lan\":\"hi\",\"bio\":\"ऐश्ले, एक बहुमुखी शब्दकोश, कहानी सुनाने के लिए एक गहरी पारंपरिक रुचि रखती है। उन्होंने कॉलेजीय पत्रकारिता के पृष्ठभूमि से लेकर QR टाइगर के लिए सामग्री लेखक के रूप में अपनाया गया अनुभव उन्हें उन्हें पाठकों के साथ संवाद रचने के लिए SEO तकनीकों से युक्त और आकर्षक कथाएं कुशलतापूर्वक बुनने की क्षमता प्रदान करता है।\\n\\nऐश्ले विचारशीलता, नवाचार और अपने क्षेत्र के लिए वास्तविक उत्साह की एक अद्वितीय संयोजन जैसा लेखन शैली में शिक्षा के लिए स्वयं पर हाथ से अनुभव को गले लगाती है।\\n\\nलेखन के क्षेत्र के बाहर, ऐश्ले साहित्य की दुनिया में खुद को डुबाती है, चेस के रण का आनंद लेती है, और रसोईघर में नए पकवानों का प्रयोग करने का आनंद लेती है।\"},{\"lan\":\"hu\",\"bio\":\"Ashley, egy sokoldalú szóember, mély szenvedéllyel rendelkezik a történetmesélés iránt. Egyetemi újságírói múltjából merítve és a QR TIGER tartalomírójaként szerzett tapasztalataiból, képes ügyesen megírni az olvasókat megragadó történeteket, melyeket SEO technikákkal fűszerez meg.\\n\\nAshley a tanulásban egy kézzelfogható módszert választ, ami visszaköszön a stílusában is - pontos, ötletes és igazi lelkesedéssel ötvözve.\\n\\nAz írásokon kívül Ashley a irodalom világába merül, stratégiai sakkpartikban vesz részt, és szeret kísérletezni a kulináris kreációkkal.\"},{\"lan\":\"id\",\"bio\":\"Ashley, seorang ahli kata yang serbaguna, memiliki gairah mendalam untuk bercerita. Mengambil dari latar belakang jurnalisme perguruan tinggi dan pengalaman sebagai penulis konten untuk QR TIGER, ia dengan cermat menciptakan narasi yang menarik yang disuntikkan dengan teknik SEO yang resonan dengan pembaca.\\n\\nAshley menerima pendekatan langsung dalam belajar, yang tercermin dalam gaya penulisannya - gabungan unik dari akurasi, inovasi, dan antusiasme yang tulus terhadap karyanya.\\n\\nDi luar dunia menulis, Ashley meresapi dirinya dalam dunia sastra, menikmati pertandingan catur strategis, dan menikmati bereksperimen dengan kreasi kuliner.\"},{\"lan\":\"it\",\"bio\":\"Ashley, un abile paroliere versatile, possiede una profonda passione per la narrazione. Attingendo da un background nel giornalismo universitario e da una permanenza come scrittrice di contenuti per QR TIGER, lei crea abilmente narrazioni coinvolgenti imbottite di tecniche SEO che risuonano con i lettori.\\n\\nAshley adotta un approccio pratico all'apprendimento, che si riflette nel suo stile di scrittura - un mix unico di precisione, inventiva e autentico entusiasmo per la sua arte.\\n\\nFuori dal mondo della scrittura, Ashley si immerge nel mondo della letteratura, si concede strategiche partite di scacchi e si diverte a sperimentare con creazioni culinarie.\"},{\"lan\":\"ja\",\"bio\":\"アシュリーは、多才な言葉使いで、物語を語ることに深い情熱を持っています。大学のジャーナリズムのバックグラウンドとQR TIGERのコンテンツライターとしての経験を活かし、SEOテクニックを取り入れた魅力的な物語を巧みに作り上げ、読者の共感を呼び起こします。\\n\\nアシュリーは学びに対して積極的なアプローチを取り、その書き方に反映されています。正確さ、独創性、そして職業に対する真の熱意が絶妙に融合した独自のスタイルです。\\n\\n文章の世界以外では、アシュリーは文学の世界に没頭し、戦略的なチェスの対戦を楽しみ、料理のアイデアを実験することを楽しんでいます。\"},{\"lan\":\"jv\",\"bio\":\"Ashley, seorang penulis yang serbaguna, memiliki hasrat mendalam untuk bercerita. Mengambil inspirasi dari latar belakang jurnalisme perguruan tinggi dan pengalaman sebagai penulis konten untuk QR TIGER, ia dengan cermat menciptakan narasi menarik yang disisipkan dengan teknik SEO yang dapat merespon pembaca.\\n\\nAshley menerapkan pendekatan langsung untuk belajar, yang tercermin dalam gaya menulisnya - perpaduan unik dari ketepatan, keinovatifan, dan antusiasme yang tulus terhadap karyanya.\\n\\nDi luar dunia menulis, Ashley tenggelam dalam dunia sastra, menikmati pertandingan catur yang strategis, dan menikmati bereksperimen dengan kreasi kuliner.\"},{\"lan\":\"ko\",\"bio\":\"애슐리는 다재다능한 글쓰기 전문가로, 이야기를 전하는 데 깊은 열정을 가지고 있습니다. 대학 신문사에서의 경험과 QR TIGER의 콘텐츠 작가로서의 업적을 바탕으로, 독자들과 공감하는 SEO 기술이 녹아든 매력적인 이야기를 솜씨 있게 쓰고 있습니다.\\n\\n애슐리는 학습에 손을 대는 방식을 채택하며, 이는 정확성, 창의성, 그리고 자신의 기술에 대한 진정한 열정이 어우러진 독특한 글쓰기 스타일로 나타납니다.\\n\\n글쓰기 외에도, 애슐리는 문학 세계에 몰입하며 전략적인 체스 게임을 즐기고, 요리 창작물에 실험을 즐깁니다.\"},{\"lan\":\"ms\",\"bio\":\"Ashley, seorang pakar kata-kata yang serba boleh, memiliki semangat yang mendalam terhadap penceritaan. Mengambil ilham dari latar belakang dalam jurnalisme kolej dan tempoh sebagai penulis kandungan untuk QR TIGER, dia mahir mencipta naratif menarik yang dicampuri dengan teknik SEO yang memberi kesan kepada pembaca.\\n\\nAshley menerima pendekatan praktikal untuk pembelajaran, yang tercermin dalam gaya penulisannya - gabungan unik antara ketepatan, keinovatifan, dan semangat yang sejati terhadap kerjanya.\\n\\nDi luar bidang penulisan, Ashley merendam diri dalam dunia sastera, menghiburkan diri dengan permainan catur dan menikmati bereksperimen dengan kreasi kuliner.\"},{\"lan\":\"nb\",\"bio\":\"Ashley, en allsidig ordkunstner, besitter en dyp lidenskap for historiefortelling. Med bakgrunn i høyere utdanning innen journalistikk og erfaring som innholdsforfatter for QR TIGER, skaper hun dyktig engasjerende fortellinger fylt med SEO-teknikker som treffer leserne.\\n\\nAshley omfavner en praktisk tilnærming til læring, noe som gjenspeiles i skrivestilen hennes - en unik blanding av nøyaktighet, oppfinnsomhet og ekte entusiasme for sitt håndverk.\\n\\nUtenfor skriveverdenen fordyper Ashley seg i litteraturens verden, koser seg med strategiske partier sjakk, og liker å eksperimentere med kulinariske kreasjoner.\"},{\"lan\":\"pl\",\"bio\":\"Ashley, wszechstronny twórca tekstów, posiada głęboką pasję do opowiadania historii. Czerpiąc z doświadczenia w dziennikarstwie akademickim i pracy jako copywriter dla QR TIGER, zręcznie tworzy angażujące narracje przesycone technikami SEO, które rezonują z czytelnikami.\\n\\nAshley przyjmuje praktyczne podejście do nauki, co odzwierciedla się w jej stylu pisania - unikalnym połączeniu dokładności, pomysłowości i autentycznego entuzjazmu dla swojego rzemiosła.\\n\\nPoza dziedziną pisania, Ashley zanurza się w świecie literatury, oddaje się strategicznym partiom szachów i eksperymentuje z kulinarnymi kreacjami.\"},{\"lan\":\"pa\",\"bio\":\"ਐਸ਼ਲੀ, ਇੱਕ ਵਿਵਿਧ ਸ਼ਬਦ-ਕਲਾਕਾਰ, ਕਹਾਣੀ ਸਾਂਝਣ ਲਈ ਗਹਿਰੀ ਉਤਸ਼ਾਹ ਰੱਖਦੀ ਹੈ। ਉਸਨੇ ਕਾਲਜ ਜਰਨੈਲਿਜ਼ਮ ਦੇ ਬੈਕਗਰਾਊਂਡ ਤੋਂ ਲਿਖਤੀ ਕਲਾ ਵਿਚ ਅਤੇ QR TIGER ਲਈ ਕਨਟੈਂਟ ਰਾਇਟਰ ਦੇ ਤੌਰ ਤੇ ਕੁਆਲੀਟੀ ਨਿਬੰਧ ਲਿਖਣ ਦੇ ਸਮਰਥਨ ਵਾਲੇ ਉਸਨੇ SEO ਤਕਨੀਕਾਂ ਨਾਲ ਭਰਪੂਰ ਰੁਚਾਵਾਂ ਵਾਲੀਆਂ ਕਹਾਣੀਆਂ ਬਣਾਈਆਂ।\\n\\nਐਸ਼ਲੀ ਸਿਖਣ ਵਿੱਚ ਹੱਥ-ਵਰਤੀ ਦੀ ਤਰੀਕੇ ਨੂੰ ਗੋਲਾਬਾਰ ਬਣਾਉਂਦੀ ਹੈ, ਜੋ ਉਸਦੇ ਲਿਖਤੀ ਸ਼ੈਲੀ ਵਿੱਚ ਦਰੁਸਤੀ, ਕੁਜਲਿਤਾ ਅਤੇ ਉਸਦੇ ਕਾਰਜ ਲਈ ਸਚੇ ਉਤਸ਼ਾਹ ਦਾ ਇੱਕ ਨਿਰਲਿਪਤ ਮਿਸ਼ਰਣ ਹੈ।\\n\\nਲਿਖਤੀ ਦਾ ਖੇਤਰ ਛੱਡ ਕੇ, ਐਸ਼ਲੀ ਸਾਹਿਤ ਦੁਨੀਆ ਵਿੱਚ ਪ੍ਰਵੇਸ਼ ਕਰਦੀ ਹੈ, ਚੈਸ ਦੇ ਰਣ ਦੀ ਪੜ੍ਹਾਈ ਵਿੱਚ ਮਸ਼ਗੂਲ ਰਹਿੰਦੀ ਹੈ, ਅਤੇ ਖਾਣਾ ਪਕਾਣ ਦੇ ਨਾਮਾਪਸੰਦ ਪ੍ਰਯੋਗ ਕਰਨ ਵਿੱਚ ਆਨੰਦ ਲੈਦੀ ਹੈ।\"},{\"lan\":\"pt\",\"bio\":\"Ashley, uma habilidosa escritora, possui uma profunda paixão pela narração de histórias. Com base em sua formação em jornalismo universitário e em sua experiência como redatora de conteúdo para QR TIGER, ela habilmente cria narrativas envolventes, infundidas com técnicas de SEO, que ressoam com os leitores.\\n\\nAshley adota uma abordagem prática para aprender, o que se reflete em seu estilo de escrita - uma mistura única de precisão, inventividade e entusiasmo genuíno por sua arte.\\n\\nFora do mundo da escrita, Ashley se envolve no mundo da literatura, se entrega a partidas estratégicas de xadrez e gosta de experimentar criações culinárias.\"},{\"lan\":\"ro\",\"bio\":\"Ashley, un maestru al cuvintelor versatil, poseda o pasiune profunda pentru storytelling. Inspirata din experienta sa in jurnalismul colegial si din perioada petrecuta ca scriitor de continut pentru QR TIGER, ea creeaza cu pricepere narative captivante, imbogatite cu tehnici SEO, care rezonaza cu cititorii.\\n\\nAshley adopta o abordare practica pentru invatare, reflectata in stilul sau de scriere - o combinatie unica de acuratete, inventivitate si entuziasm autentic pentru meseria sa.\\n\\nIn afara domeniului scrisului, Ashley se cufunda in lumea literaturii, se deda la partide strategice de sah si se bucura de experimentarea cu creatiile culinare.\"},{\"lan\":\"ru\",\"bio\":\"Ашли, универсальный словесник, обладает глубокой страстью к рассказам. Извлекая из опыта в журналистике в университете и работы контент-писателем в QR TIGER, она умело создает увлекательные повествования, пропитанные техниками SEO, которые резонируют с читателями.\\n\\nАшли придерживается практического подхода к обучению, что отражается в ее стиле письма - уникальное сочетание точности, изобретательности и искреннего энтузиазма к своему делу.\\n\\nВне сферы письма Ашли погружается в мир литературы, наслаждается стратегическими партиями шахмат и любуется экспериментами с кулинарными творениями.\"},{\"lan\":\"zh-cn\",\"bio\":\"Ashley 是一个多才多艺的文字工匠,对讲故事充满热情。她拥有大学新闻学背景,曾担任 QR TIGER 的内容撰写人员,熟练地创作充满 SEO 技巧的引人入胜的叙事,让读者产生共鸣。\\n\\nAshley 喜欢亲身实践学习,这种态度也体现在她的写作风格中——准确、富有创造力,对自己的工艺充满热情。\\n\\n在写作领域之外,Ashley 沉浸在文学世界中,享受着战略性的国际象棋对局,并喜欢尝试烹饪创意。\"},{\"lan\":\"es\",\"bio\":\"Ashley, una habilidosa maestra de las palabras, posee una profunda pasión por contar historias. Basándose en su formación en periodismo universitario y su experiencia como redactora de contenidos para QR TIGER, ella crea hábilmente narrativas atractivas impregnadas de técnicas de SEO que resuenan con los lectores.\\n\\nAshley adopta un enfoque práctico para aprender, lo cual se refleja en su estilo de escritura: una combinación única de precisión, inventiva y entusiasmo genuino por su oficio.\\n\\nFuera del mundo de la escritura, Ashley se sumerge en el mundo de la literatura, se entrega a estratégicas partidas de ajedrez y disfruta experimentando con creaciones culinarias.\"},{\"lan\":\"sv\",\"bio\":\"Ashley, en mångsidig ordkonstnär, besitter en djup passion för berättande. Med erfarenhet från universitetsjournalistik och en tid som innehållsskrivare för QR TIGER, skapar hon skickligt engagerande berättelser med SEO-tekniker som resonerar med läsarna.\\n\\nAshley omfamnar en praktiskt inriktad inlärningsmetod, vilket återspeglas i hennes skrivstil - en unik blandning av noggrannhet, uppfinningsrikedom och genuint entusiasm för sitt yrke.\\n\\nUtanför skrivandets värld fördjupar sig Ashley i litteraturens värld, njuter av strategiska parti schack och gillar att experimentera med kulinariska skapelser.\"},{\"lan\":\"ta\",\"bio\":\"ஆஷ்லீ, ஒரு வாரியமான சொல்லாளி, கதைசுருக்கத்துக்கு ஒரு ஆழமான உழைக்கையை வைத்துக் கொண்டார். பல்கலைய செய்தியாளராக அனுபவம் வாய்ந்துள்ள மற்றும் QR TIGER உள்ள உள்ளாட்சி எழுத்தாளராக இருந்ததற்கு அடிப்படையானவையிலிருந்து அவர் வாசிக்கும் அடிப்படையான கதைகளை SEO தொழில்முறைகளொன்று கலந்து உருவாக்குகிறார்.\\n\\nஆஷ்லீ அனுகீர்த்தி மற்றும் உழைக்கை அறிவுக்கு ஒரு கைக்குழக்கம் எடுக்குகிறார், இது அவருடைய எழுத்து படைப்பில் தெளிவு, புதுமை, மற்றும் அவர் தொழில் குரலுக்குஉள்ள உத்தேயம் அடங்கும் ஒரு உணர்வுக்கூட்டமாக உள்ளது.\\n\\nஎழுதினால் வெளியேற்றம் செய்வதற்கு மீது ஆஷ்லீ உயர்வான இலக்குகளில் கூடிய உலாவுவாரம், பழமை, மற்றும் செயல்முறைகளை மனமார்ந்துபயன்படுத்துவதில் அவர் இடமிருந்துள்ளது.\\n\\nஎழுத்துவர்களின் வெளியேற்றத்துக்கு வெளியேற்றம் செய்வது இல்லாமல், ஆஷ்லீ உலகத்தில் இருப்புக்கு படியாக்கிறார், தகுந்து அடைந்து உணர்த்துகிறார், மற்றும் பாரம்பரிய செய்திகளுடன் பட்டியல்வழக்குகளை மனமார்ந்துஅனுப்புவதில் இழுக்கிறார்.\"},{\"lan\":\"th\",\"bio\":\"แอชลีย์เป็นนักเขียนคำสามารถที่หลากหลายมีความหลงใหลในการเล่าเรื่องอย่างมาก ด้วยประสบการณ์ในสาขาหนังสือพิมพ์ของมหาวิทยาลัยและการเป็นนักเขียนเนื้อหาสำหรับ QR TIGER เธอสร้างเนื้อหาที่น่าสนใจอย่างคล่องแคล่วที่มีเทคนิค SEO ที่สามารถกระตุ้นความสนใจของผู้อ่าน\\n\\nแอชลีย์นำเสนอการเรียนรู้ด้วยการปฏิบัติอย่างตรงไปตรงมา ซึ่งแสดงในสไตล์การเขียนของเธอ - การผสมผสานความถูกต้อง การคิดสร้างสรรค์ และความกระตือรือร้นจริงใจในงานของเธอ\\n\\nนอกจากการเขียน แอชลีย์ยังลงตัวในโลกของวรรณกรรม ใช้เวลาอย่างกลยุทธ์ในการเล่นหมากระดาษ และสนุกสนานในการทดลองสร้างสรรค์อาหาร\"},{\"lan\":\"zh-tw\",\"bio\":\"Ashley是一位多才多藝的文字工匠,對故事講述擁有深厚的熱情。她憑藉在大學新聞學的背景和在QR TIGER擔任內容寫手的經驗,巧妙地製作出融合了SEO技術的引人入勝的敘述,讓讀者產生共鳴。\\n\\nAshley採用實踐式的學習方法,這種方法體現在她的寫作風格中——一種獨特的準確性、創造力和對自己手藝的真誠熱情的融合。\\n\\n在寫作領域之外,Ashley沉浸在文學世界中,沉迷於戰略性的象棋對局,並喜歡嘗試烹飪創作。\"},{\"lan\":\"tr\",\"bio\":\"Ashley, çok yönlü bir kelime ustası olarak hikaye anlatmaya derin bir tutkuya sahiptir. Üniversite gazeteciliği geçmişinden ve QR TIGER için içerik yazarı olarak görev yapmasından ilham alarak, okuyucularıyla rezonansa giren SEO teknikleriyle dolu ilgi çekici anlatılar ustaca oluşturur.\\n\\nAshley, yazma alanında elden geldiğince öğrenmeye yönelik bir yaklaşım benimser ve bu da yazma tarzına yansır - doğruluk, yaratıcılık ve zanaati için gerçekten coşku dolu benzersiz bir karışım.\\n\\nYazmanın dışındayken, Ashley kendini edebiyat dünyasına kaptırır, stratejik satranç maçlarına dalar ve mutfak yaratımları denemekten keyif alır.\"},{\"lan\":\"ur\",\"bio\":\"اشلے، جو لفظوں کی ماہر ہے، اسے کہانی کے کام کے لیے گہری شوقیں ہیں۔ اس کا تجربہ کالجی پیشہ ور صحافت اور QR TIGER کے مواد لکھنے والی کی حیثیت سے ہے، اس نے مواقع سے بھرپور کہانیوں کو مہارت سے بنایا ہے جو سی ای او تکنیکوں سے بتورہ ہوتی ہیں جو قارئین کے ساتھ موزوں ہوتی ہیں۔\\n\\nاشلے نے سیکھنے کے لیے ہاتھ سے تجربہ کاری کو قبول کیا ہے، جو اس کی تحریری اسٹائل میں عکس کرتا ہے - ایک منفرد ملاپ ٹھیکی، ادارجیت، اور اس کے فن کے لیے واقفیت کے جذبے کا ایک خاص مجموعہ۔\\n\\nتحریر کے علاوہ، اشلے خود کو ادب کی دنیا میں غرق کرتی ہے، شطرنج کی مواجہ کیا جاتا ہے، اور کلینی کریشنز کے ساتھ تجربات کرنے کا لطف اٹھاتی ہے۔\"},{\"lan\":\"vi\",\"bio\":\"Ashley, một người biết nhiều từ, sở hữu niềm đam mê sâu sắc với việc kể chuyện. Rút kinh nghiệm từ quá trình học báo chí đại học và thời gian làm việc làm người viết nội dung cho QR TIGER, cô ấy tài tình tạo ra những câu chuyện hấp dẫn kết hợp với kỹ thuật SEO để gây ấn tượng với độc giả.\\n\\nAshley chấp nhận phương pháp học bằng cách thực hành, điều này được thể hiện trong phong cách viết của cô ấy - một sự kết hợp độc đáo giữa sự chính xác, sáng tạo và sự nhiệt tình chân thành với nghề nghiệp của mình.\\n\\nBên ngoài lĩnh vực viết lách, Ashley đắm mình trong thế giới văn học, thích chơi cờ vua một cách chiến lược và thích thử nghiệm với các món ăn sáng tạo.\"}],\"metaTitileTranslation\":[],\"metaDescTranslation\":[],\"_id\":\"63d21df1b2ec0316dd4001b4\",\"name\":\"Ashley P.\",\"username\":\"ashley\",\"website\":\"\",\"location\":\"\",\"bio\":\"Ashley是一位多才多藝的文字工匠,對故事講述擁有深厚的熱情。她憑藉在大學新聞學的背景和在QR TIGER擔任內容寫手的經驗,巧妙地製作出融合了SEO技術的引人入勝的敘述,讓讀者產生共鳴。\\n\\nAshley採用實踐式的學習方法,這種方法體現在她的寫作風格中——一種獨特的準確性、創造力和對自己手藝的真誠熱情的融合。\\n\\n在寫作領域之外,Ashley沉浸在文學世界中,沉迷於戰略性的象棋對局,並喜歡嘗試烹飪創作。\",\"avatar\":\"https://media.qrtiger.com/blog/2024/01/ashleyjpg_800.jpeg\",\"id\":\"63d21df1b2ec0316dd4001b4\"}],\"id\":\"697ffc39490e1dbdfea54b24\",\"translationNoindex\":false,\"supportedLangs\":[\"en\",\"pt\",\"nl\",\"da\",\"sv\",\"de\",\"es\",\"id\",\"ms\",\"jv\",\"fr\",\"nb\",\"it\",\"ro\",\"pl\",\"zh-cn\",\"af\",\"zh-tw\",\"tr\",\"fi\",\"ja\",\"ko\",\"hu\",\"ru\",\"vi\",\"ar\",\"th\",\"ur\",\"hi\",\"el\",\"bn\",\"pa\",\"ta\"],\"noIndexLangs\":[]},\"schema\":[{\"string\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"Article\\\",\\\"publisher\\\":{\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"如何使用HTML生成QR碼:簡易指南\\\",\\\"logo\\\":\\\"https://media.qrtiger.com/images/QRtiger/logo.png\\\"},\\\"author\\\":{\\\"@type\\\":\\\"Person\\\",\\\"name\\\":\\\"Ashley P.\\\",\\\"description\\\":\\\"Ashley是一位多才多藝的文字工匠,對故事講述擁有深厚的熱情。她憑藉在大學新聞學的背景和在QR TIGER擔任內容寫手的經驗,巧妙地製作出融合了SEO技術的引人入勝的敘述,讓讀者產生共鳴。\\\\n\\\\nAshley採用實踐式的學習方法,這種方法體現在她的寫作風格中——一種獨特的準確性、創造力和對自己手藝的真誠熱情的融合。\\\\n\\\\n在寫作領域之外,Ashley沉浸在文學世界中,沉迷於戰略性的象棋對局,並喜歡嘗試烹飪創作。\\\",\\\"image\\\":\\\"https://media.qrtiger.com/blog/2024/01/ashleyjpg_800.jpeg\\\"},\\\"url\\\":\\\"https://www.qrcode-tiger.com/how-to-generate-a-qr-code-using-html\\\",\\\"headline\\\":\\\"如何使用HTML生成QR碼:簡易指南\\\",\\\"description\\\":\\\"想要透過編碼來創建QR碼嗎?了解如何使用HTML和JavaScript生成QR碼。\\\",\\\"image\\\":\\\"https://media.qrtiger.com/blog/2026/06/how-to-generate-a-qr-code-using-htmljpg_800.jpeg\\\",\\\"datePublished\\\":\\\"2026-02-26T17:52:00.000Z\\\",\\\"dateModified\\\":\\\"2026-09-11T05:11:19.664Z\\\"}\",\"type\":\"application/ld+json\"}],\"schemaData\":\"$4c\",\"isMobile\":false}]]}],\"$L4f\"]}]}]}]}]}]\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"如何使用HTML生成QR碼:簡易指南 | QR Tiger\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"想要透過編碼來創建QR碼嗎?了解如何使用HTML和JavaScript生成QR碼。 - QR Tiger\"}],[\"$\",\"meta\",\"4\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"meta\",\"5\",{\"name\":\"title\",\"content\":\"如何使用HTML生成QR碼:簡易指南 | QR Tiger\"}],[\"$\",\"link\",\"6\",{\"rel\":\"canonical\",\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"7\",{\"rel\":\"alternate\",\"hrefLang\":\"pt\",\"href\":\"https://www.qrcode-tiger.com/pt/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"8\",{\"rel\":\"alternate\",\"hrefLang\":\"nl\",\"href\":\"https://www.qrcode-tiger.com/nl/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"9\",{\"rel\":\"alternate\",\"hrefLang\":\"da\",\"href\":\"https://www.qrcode-tiger.com/da/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"10\",{\"rel\":\"alternate\",\"hrefLang\":\"sv\",\"href\":\"https://www.qrcode-tiger.com/sv/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"11\",{\"rel\":\"alternate\",\"hrefLang\":\"de\",\"href\":\"https://www.qrcode-tiger.com/de/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"12\",{\"rel\":\"alternate\",\"hrefLang\":\"es\",\"href\":\"https://www.qrcode-tiger.com/es/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"13\",{\"rel\":\"alternate\",\"hrefLang\":\"id\",\"href\":\"https://www.qrcode-tiger.com/id/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"14\",{\"rel\":\"alternate\",\"hrefLang\":\"ms\",\"href\":\"https://www.qrcode-tiger.com/ms/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"15\",{\"rel\":\"alternate\",\"hrefLang\":\"fr\",\"href\":\"https://www.qrcode-tiger.com/fr/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"16\",{\"rel\":\"alternate\",\"hrefLang\":\"nb\",\"href\":\"https://www.qrcode-tiger.com/nb/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"17\",{\"rel\":\"alternate\",\"hrefLang\":\"it\",\"href\":\"https://www.qrcode-tiger.com/it/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"18\",{\"rel\":\"alternate\",\"hrefLang\":\"ro\",\"href\":\"https://www.qrcode-tiger.com/ro/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"19\",{\"rel\":\"alternate\",\"hrefLang\":\"pl\",\"href\":\"https://www.qrcode-tiger.com/pl/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"20\",{\"rel\":\"alternate\",\"hrefLang\":\"zh-cn\",\"href\":\"https://www.qrcode-tiger.com/zh-cn/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"21\",{\"rel\":\"alternate\",\"hrefLang\":\"zh-tw\",\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"22\",{\"rel\":\"alternate\",\"hrefLang\":\"tr\",\"href\":\"https://www.qrcode-tiger.com/tr/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"23\",{\"rel\":\"alternate\",\"hrefLang\":\"fi\",\"href\":\"https://www.qrcode-tiger.com/fi/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"24\",{\"rel\":\"alternate\",\"hrefLang\":\"ja\",\"href\":\"https://www.qrcode-tiger.com/ja/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"25\",{\"rel\":\"alternate\",\"hrefLang\":\"ko\",\"href\":\"https://www.qrcode-tiger.com/ko/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"26\",{\"rel\":\"alternate\",\"hrefLang\":\"hu\",\"href\":\"https://www.qrcode-tiger.com/hu/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"27\",{\"rel\":\"alternate\",\"hrefLang\":\"ru\",\"href\":\"https://www.qrcode-tiger.com/ru/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"28\",{\"rel\":\"alternate\",\"hrefLang\":\"vi\",\"href\":\"https://www.qrcode-tiger.com/vi/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"29\",{\"rel\":\"alternate\",\"hrefLang\":\"ar\",\"href\":\"https://www.qrcode-tiger.com/ar/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"30\",{\"rel\":\"alternate\",\"hrefLang\":\"th\",\"href\":\"https://www.qrcode-tiger.com/th/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"31\",{\"rel\":\"alternate\",\"hrefLang\":\"hi\",\"href\":\"https://www.qrcode-tiger.com/hi/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"32\",{\"rel\":\"alternate\",\"hrefLang\":\"el\",\"href\":\"https://www.qrcode-tiger.com/el/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"33\",{\"rel\":\"alternate\",\"hrefLang\":\"bn\",\"href\":\"https://www.qrcode-tiger.com/bn/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"link\",\"34\",{\"rel\":\"alternate\",\"hrefLang\":\"x-default\",\"href\":\"https://www.qrcode-tiger.com/how-to-generate-a-qr-code-using-html\"}],[\"$\",\"meta\",\"35\",{\"property\":\"og:title\",\"content\":\"如何使用HTML生成QR碼:簡易指南 | QR Tiger\"}],[\"$\",\"meta\",\"36\",{\"property\":\"og:description\",\"content\":\"想要透過編碼來創建QR碼嗎?了解如何使用HTML和JavaScript生成QR碼。 - QR Tiger\"}],[\"$\",\"meta\",\"37\",{\"name\":\"twitter:card\",\"content\":\"summary\"}],[\"$\",\"meta\",\"38\",{\"name\":\"twitter:title\",\"content\":\"如何使用HTML生成QR碼:簡易指南 | QR Tiger\"}],[\"$\",\"meta\",\"39\",{\"name\":\"twitter:description\",\"content\":\"想要透過編碼來創建QR碼嗎?了解如何使用HTML和JavaScript生成QR碼。 - QR Tiger\"}]]\n"])</script><script>self.__next_f.push([1,"2:null\n"])</script><script>self.__next_f.push([1,"4f:[\"$\",\"div\",null,{\"className\":\"footer\",\"children\":[\"$\",\"div\",null,{\"className\":\"container\",\"children\":[[\"$\",\"div\",null,{\"className\":\"social-section\",\"children\":[[\"$\",\"div\",null,{\"className\":\"subscribe\",\"children\":[[\"$\",\"section\",null,{\"children\":\"保持跟進\"}],[\"$\",\"span\",null,{\"className\":\"footer-text footer-subscribe__desc\",\"dangerouslySetInnerHTML\":{\"__html\":\"註冊我們的通訊,第一時間獲得促銷、更新和提示。\"}}],[\"$\",\"$L21\",null,{}]]}],[\"$\",\"div\",null,{\"className\":\"social-community\",\"children\":[[\"$\",\"span\",null,{\"className\":\"footer-text mb-2\",\"children\":\"加入社群\"}],[\"$\",\"div\",null,{\"className\":\"social-icons\",\"children\":[\"$L50\",\"$L51\",\"$L52\",\"$L53\",\"$L54\"]}]]}],[\"$\",\"div\",null,{\"className\":\"social-community download-app\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"footer-text\",\"children\":\"下載 QR TIGER 應用程式\"}],[\"$\",\"span\",null,{\"className\":\"footer-text mb-2\",\"children\":\"隨時製作和掃描QR碼\"}],[\"$\",\"div\",null,{\"className\":\"download-buttons\",\"children\":[\"$L55\",\"$L56\"]}]]}]]}],\"$L57\",[\"$\",\"div\",null,{\"className\":\"main-menu\",\"children\":[[\"$\",\"div\",\"footer-menu-col-0\",{\"className\":\"section text-lg-left text-left\",\"children\":[[\"$\",\"div\",\"guides\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"指南\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"faq\",{\"className\":\"faq\",\"children\":\"$L58\"}],[\"$\",\"li\",\"contactUs\",{\"className\":\"contactUs\",\"children\":\"$L59\"}],[\"$\",\"li\",\"helpCenter\",{\"className\":\"helpCenter\",\"children\":\"$L5a\"}]]}]]}]]}],[\"$\",\"div\",\"footer-menu-col-1\",{\"className\":\"section text-lg-left text-right text-lg-left\",\"children\":[[\"$\",\"div\",\"support\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"支持\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"mailTo\",{\"className\":\"mailTo\",\"children\":\"$L5b\"}]]}]]}]]}],[\"$\",\"div\",\"footer-menu-col-2\",{\"className\":\"section text-lg-left text-left\",\"children\":[[\"$\",\"div\",\"company\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"公司\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"aboutUs\",{\"className\":\"aboutUs\",\"children\":\"$L5c\"}],[\"$\",\"li\",\"status\",{\"className\":\"status\",\"children\":\"$L5d\"}],[\"$\",\"li\",\"enterpriseSolutions\",{\"className\":\"enterpriseSolutions\",\"children\":\"$L5e\"}],[\"$\",\"li\",\"pricing\",{\"className\":\"pricing\",\"children\":\"$L5f\"}]]}]]}]]}],[\"$\",\"div\",\"footer-menu-col-3\",{\"className\":\"section text-lg-left text-right text-lg-left\",\"children\":[[\"$\",\"div\",\"terms\",{\"children\":[[\"$\",\"label\",null,{\"className\":\"text-white\",\"children\":\"條款\"}],[\"$\",\"ul\",null,{\"children\":[[\"$\",\"li\",\"termsAgreements\",{\"className\":\"termsAgreements\",\"children\":\"$L60\"}],[\"$\",\"li\",\"termsOfAcceptableUse\",{\"className\":\"termsOfAcceptableUse\",\"children\":\"$L61\"}],[\"$\",\"li\",\"privacyPolicy\",{\"className\":\"privacyPolicy\",\"children\":\"$L62\"}],[\"$\",\"li\",\"cookiesPolicy\",{\"className\":\"cookiesPolicy\",\"children\":\"$L63\"}]]}]]}]]}]]}],[\"$\",\"div\",null,{\"className\":\"vtline\"}],[\"$\",\"div\",null,{\"className\":\"d-flex justify-content-center m-3\",\"children\":\"$L64\"}],[\"$\",\"div\",null,{\"className\":\"text-center copy-right\",\"children\":[\"這個QR碼生成器是QR TIGER有限公司的註冊商標。\",[\"$\",\"br\",\"br\",{}],\"'QR Code' 是 DENSO WAVE INCORPORATED 的商標。 © 2026 www.qrcode-tiger.com\"]}]]}]}]\n"])</script><script>self.__next_f.push([1,"50:[\"$\",\"$L37\",null,{\"href\":\"https://www.linkedin.com/company/qrtiger/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon linkedin-icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: LinkedIn\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-linkedin\",\"aria-hidden\":\"true\"}]}]\n51:[\"$\",\"$L37\",null,{\"href\":\"https://www.youtube.com/c/QRTiger\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: YouTube\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-youtube\",\"aria-hidden\":\"true\"}]}]\n52:[\"$\",\"$L37\",null,{\"href\":\"https://www.instagram.com/qrtiger\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: Instagram\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-instagram\",\"aria-hidden\":\"true\"}]}]\n53:[\"$\",\"$L37\",null,{\"href\":\"https://www.facebook.com/QRTIGERS/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: Facebook\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-facebook\",\"aria-hidden\":\"true\"}]}]\n54:[\"$\",\"$L37\",null,{\"href\":\"https://twitter.com/qrtigers\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"icon\",\"prefetch\":true,\"aria-label\":\"跟隨我們: X\",\"children\":[\"$\",\"i\",null,{\"className\":\"qr-icons qr-x-logo\",\"aria-hidden\":\"true\"}]}]\n55:[\"$\",\"$L37\",null,{\"href\":\"https://apps.apple.com/us/app/qr-tiger-qr-code-generator/id1509675463\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"children\":[\"$\",\"img\",null,{\"src\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainFooter/appStore.webp\",\"alt\":\"Download on the App Store\",\"width\":139,\"height\":46,\"loading\":\"lazy\",\"decoding\":\"async\"}]}]\n56:[\"$\",\"$L37\",null,{\"href\":\"https://play.google.com/store/apps/details?id=com.qrtiger\u0026pli=1\",\"locale\":\"$undefined\""])</script><script>self.__next_f.push([1,",\"localeCookie\":\"$38\",\"children\":[\"$\",\"img\",null,{\"src\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainFooter/googlePlay.webp\",\"alt\":\"Get it on Google Play\",\"width\":155,\"height\":46,\"loading\":\"lazy\",\"decoding\":\"async\"}]}]\n58:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/faq\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"常見問題\"}]\n59:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/contact\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"聯絡我們\"}]\n5a:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/blog/help-center\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_self\",\"children\":\"幫助中心\"}]\n5b:[\"$\",\"$L37\",null,{\"href\":\"mailto:it@qrtiger.com\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_self\",\"children\":\"it@qrtiger.com\"}]\n5c:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/about\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"關於我們\"}]\n5d:[\"$\",\"$L37\",null,{\"href\":\"https://qrtiger.statuspage.io/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"狀態\"}]\n5e:[\"$\",\"$L37\",null,{\"href\":\"https://enterprise.qrcode-tiger.com/\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"企業解決方案\"}]\n5f:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/payment\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_self\",\"children\":\"價格設定\"}]\n60:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/terms-and-conditions\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"條款和條件\"}]\n61:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/term-acceptable-use\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text"])</script><script>self.__next_f.push([1,"-white\",\"target\":\"_blank\",\"children\":\"可接受使用條款\"}]\n62:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/privacy-policy\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"隱私政策\"}]\n63:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/cookies-policy\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white\",\"target\":\"_blank\",\"children\":\"Cookies 政策\"}]\n64:[\"$\",\"$L37\",null,{\"href\":\"/zh-tw\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"main-logo\",\"children\":[\"$\",\"img\",null,{\"src\":\"https://qrtiger-fe.nyc3.cdn.digitaloceanspaces.com/static/img/MainHeader/qrtiger_logo_s.svg\",\"alt\":\"qr code generator\",\"width\":200,\"height\":59,\"loading\":\"lazy\",\"decoding\":\"async\"}]}]\n57:[\"$\",\"div\",null,{\"className\":\"resources-wrapper mt-5 mb-5\",\"children\":[[\"$\",\"div\",null,{\"className\":\"resources-header\",\"children\":\"資源\"}],[\"$\",\"div\",null,{\"className\":\"row\",\"children\":[[\"$\",\"div\",\"dynamicQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L65\"}]}],[\"$\",\"div\",\"multiUrlQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L66\"}]}],[\"$\",\"div\",\"digitalBusinessCard\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L67\"}]}],[\"$\",\"div\",\"bulkQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L68\"}]}],[\"$\",\"div\",\"imageQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L69\"}]}],[\"$\",\"div\",\"videoQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L6a\"}]}],[\"$\",\"div\",\"googleFormQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L6b\"}]}],[\"$\",\"div\",\"logoQRCode\",{\"className\":\"col-m"])</script><script>self.__next_f.push([1,"d-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L6c\"}]}],[\"$\",\"div\",\"analyticsQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L6d\"}]}],[\"$\",\"div\",\"restaurantQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L6e\"}]}],[\"$\",\"div\",\"fileQRCode\",{\"className\":\"col-md-6 col-lg-3 mb-1 mt-1\",\"children\":[\"$\",\"div\",null,{\"className\":\"resource-item\",\"children\":\"$L6f\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"65:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-do-dynamic-qr-codes-work\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"動態QR碼是如何運作的?\"}]\n66:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-does-a-multi-url-qr-code-works-and-can-benefit-your-business-smart-qr-code\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"多URL QR碼\"}]\n67:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/digital-business-card-qr-code\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"數位名片 QR 碼\"}]\n68:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/bulk-qr-code-generator\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"批量 QR 碼生成器\"}]\n69:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-make-a-qr-code-of-an-image\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何為圖像製作 QR 碼\"}]\n6a:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-create-a-video-qr-code-\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何為視頻創建QR碼\"}]\n6b:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/how-to-make-a-qr-code-for-a-google-form\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何為 Google Form 創建 QR 碼?\"}]\n6c:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/qr-code-with-logo\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何製作帶有標誌的QR碼\"}]\n6d:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/track-qr-code-with-google-analytics\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何使用 Google Analytics 追蹤 QR 碼\"}]\n6e:[\"$\",\"$L37\",null,{\"href\""])</script><script>self.__next_f.push([1,":\"https://www.qrcode-tiger.com/zh-tw/how-to-make-your-qr-code-in-restaurant\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"如何製作餐廳菜單的QR碼\"}]\n6f:[\"$\",\"$L37\",null,{\"href\":\"https://www.qrcode-tiger.com/zh-tw/file-qr-code-converter\",\"locale\":\"$undefined\",\"localeCookie\":\"$38\",\"className\":\"text-white text-center\",\"children\":\"QR 碼轉換器\"}]\n"])</script></body></html>