* Deploy Virtual Bussiness card.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.2 KiB

8 months ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Virtual Business Card</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. margin: 0;
  11. padding: 0;
  12. background-color: #f2f2f2;
  13. }
  14. .card {
  15. width: 300px;
  16. margin: 50px auto;
  17. background-color: #fff;
  18. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  19. border-radius: 8px;
  20. padding: 20px;
  21. }
  22. .card h1, .card h2, .card p {
  23. margin: 0;
  24. }
  25. .card h1 {
  26. color: #333;
  27. }
  28. .card h2 {
  29. color: #666;
  30. font-size: 18px;
  31. margin-bottom: 10px;
  32. }
  33. .card p {
  34. color: #777;
  35. font-size: 16px;
  36. }
  37. .qr-code {
  38. margin-top: 20px;
  39. text-align: center;
  40. }
  41. .social-buttons {
  42. margin-top: 20px;
  43. text-align: center;
  44. }
  45. .social-buttons a {
  46. display: inline-block;
  47. margin-right: 10px;
  48. }
  49. .social-buttons a img {
  50. width: 40px;
  51. height: 40px;
  52. border-radius: 50%;
  53. }
  54. @media only screen and (max-width: 600px) {
  55. .social-buttons a img {
  56. width: 30px;
  57. height: 30px;
  58. }
  59. }
  60. @media only screen and (max-width: 400px) {
  61. .social-buttons {
  62. margin-top: 10px;
  63. }
  64. .social-buttons a img {
  65. width: 25px;
  66. height: 25px;
  67. }
  68. }
  69. </style>
  70. </head>
  71. <body>
  72. <div class="card">
  73. <h1>John Doe</h1>
  74. <h2>CEO & Founder</h2>
  75. <p>Acme Corporation</p>
  76. <p>Email: [email protected]</p>
  77. <p>Phone: +1234567890</p>
  78. <div class="qr-code">
  79. <img src="{{ url_for('static', filename='qr_code.png') }}" alt="QR Code">
  80. </div>
  81. <div class="social-buttons">
  82. <a href="https://www.instagram.com/your_instagram_username" target="_blank"><img src="instagram_icon.png" alt="Instagram"></a>
  83. <a href="https://www.facebook.com/your_facebook_username" target="_blank"><img src="facebook_icon.png" alt="Facebook"></a>
  84. <a href="https://www.yourwebsite.com" target="_blank"><img src="website_icon.png" alt="Personal Website"></a>
  85. </div>
  86. </div>
  87. </body>
  88. </html>