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

index.html 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <meta name="format-detection" content="telephone=no" />
  22. <meta name="theme-color" content="#2196F3"/>
  23. <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
  24. <link rel="stylesheet" type="text/css" href="css/index.css" />
  25. <link rel="manifest" href="manifest.json">
  26. <title>Hello World</title>
  27. </head>
  28. <body>
  29. <div class="app">
  30. <h1>Apache Cordova</h1>
  31. <div id="deviceready" class="blink">
  32. <p class="event listening">Connecting to Device</p>
  33. <p class="event received">Device is Ready</p>
  34. </div>
  35. </div>
  36. <script type="text/javascript" src="cordova.js"></script>
  37. <script type="text/javascript" src="js/index.js"></script>
  38. <script type="text/javascript">
  39. app.initialize();
  40. </script>
  41. </body>
  42. </html>