/
nick.sh
/
javascript-apps
Обзор
Документация
Войти
/
nick.sh
/
javascript-apps
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
qr-code-generator_app/index.html
20 строк
603 B
Shaposhnikov-Nick
qr-code generator
26 янв 2024, 11:24
26 янв 2024, 11:24
28978cb
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>QR Code Generator</title> <link rel="stylesheet" href="style.css" /> <script src="script.js" defer></script> </head> <body> <div class="container"> <p>Input your text or url</p> <input id="input" type="text" placeholder="Text or URL" /> <div id="imgBox"> <img id="qr-code" src="" /> </div> <button id="generate" onclick="generateQR()">Generate QR Code</button> </div> </body> </html>