Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

index.html 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing,
  12. software distributed under the License is distributed on an
  13. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. KIND, either express or implied. See the License for the
  15. specific language governing permissions and limitations
  16. under the License.
  17. -->
  18. <html>
  19. <head>
  20. <meta charset="utf-8">
  21. <!--
  22. Customize this policy to fit your own app's needs. For more guidance, see:
  23. https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
  24. Some notes:
  25. * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
  26. * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
  27. * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
  28. * Enable inline JS: add 'unsafe-inline' to default-src
  29. -->
  30. <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
  31. <meta name="format-detection" content="telephone=no">
  32. <meta name="msapplication-tap-highlight" content="no">
  33. <meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
  34. <meta name="color-scheme" content="light dark">
  35. <link rel="stylesheet" href="css/index.css">
  36. <title>Hello World</title>
  37. </head>
  38. <body>
  39. <div class="app">
  40. <h1>Apache Cordova</h1>
  41. <div id="deviceready" class="blink">
  42. <p class="event listening">Connecting to Device</p>
  43. <p class="event received">Device is Ready</p>
  44. </div>
  45. </div>
  46. <script src="cordova.js"></script>
  47. <script src="js/index.js"></script>
  48. </body>
  49. </html>