index.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0"/>
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  7. <!-- Chrome, Firefox OS and Opera -->
  8. <meta name="theme-color" content="#42445A"/>
  9. <!-- Windows Phone -->
  10. <meta name="msapplication-navbutton-color" content="#42445A"/>
  11. <!-- iOS Safari -->
  12. <meta name="apple-mobile-web-app-status-bar-style" content="#42445A"/>
  13. <!-- SEO Stuff -->
  14. <meta name="audience" lang="en" content="all"/>
  15. <meta name="expires" content="7 days"/>
  16. <meta name="robots" content="follow"/>
  17. <meta name="revisit-after" content="7 days"/>
  18. <meta name="page-topic" content="Color picker"/>
  19. <meta name="copyright" content="Simon Reinisch"/>
  20. <meta name="author" content="Simon Reinisch"/>
  21. <meta name="description"
  22. content="Flat, simple, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!"/>
  23. <meta name="keywords" content="colorpicker, color-picker, design, ux-design, ui-design, web-development, programming, colors"/>
  24. <!-- Open Graph / Facebook -->
  25. <meta property="og:image" content="st/favicon.png"/>
  26. <meta property="og:type" content="website"/>
  27. <meta property="og:url" content="https://simonwep.github.io/pickr/"/>
  28. <meta property="og:site_name" content="Pickr"/>
  29. <meta property="og:title" content="Pickr - Modern Color Picker"/>
  30. <meta property="og:description"
  31. content="Flat, simple, responsive and hackable Color-Picker. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize."/>
  32. <!-- Twitter -->
  33. <meta property="twitter:url" content="https://simonwep.github.io/pickr/">
  34. <meta property="twitter:title" content="Pickr - Modern Color Picker">
  35. <meta property="twitter:description"
  36. content="Flat, simple, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!">
  37. <meta property="twitter:image" content="st/favicon.png">
  38. <title>Pickr</title>
  39. <!-- Icons -->
  40. <link rel="icon" href="st/favicon.png"/>
  41. <link rel="fluid-icon" href="st/favicon.png"/>
  42. <link rel="apple-touch-icon" href="st/favicon.png"/>
  43. <!-- Style sheets -->
  44. <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
  45. <link href="dist/themes/classic.min.css" rel="stylesheet"/>
  46. <link href="dist/themes/monolith.min.css" rel="stylesheet"/>
  47. <link href="dist/themes/nano.min.css" rel="stylesheet"/>
  48. <link href="st/styles.css" rel="stylesheet"/>
  49. </head>
  50. <body>
  51. <header>
  52. <h1>Pickr. Keep it simple.</h1>
  53. <a href="https://github.com/Simonwep/pickr">VIEW ON GITHUB</a>
  54. </header>
  55. <main>
  56. <div class="theme-container"></div>
  57. <div class="pickr-container"></div>
  58. <p>(Tap it)</p>
  59. </main>
  60. <script src="dist/pickr.es5.min.js"></script>
  61. <script src="st/script.js"></script>
  62. </body>
  63. </html>