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

madera.html 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <html>
  2. <head>
  3. <!--
  4. Customize this policy to fit your own app's needs. For more guidance, see:
  5. https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
  6. Some notes:
  7. * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
  8. * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
  9. * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
  10. * Enable inline JS: add 'unsafe-inline' to default-src
  11. -->
  12. <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; media-src *; img-src 'self' data: content:;">
  13. <!--these three for the calendar-->
  14. <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
  15. <link rel="stylesheet" href="calendar_files/css/demo.css"/>
  16. <link rel="stylesheet" href="calendar_files/css/theme1.css"/>
  17. <!--this is for the search bar-->
  18. <link rel = "stylesheet" href = "css/searchbar1.css">
  19. <meta name="format-detection" content="telephone=no">
  20. <meta name="msapplication-tap-highlight" content="no">
  21. <meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
  22. <link rel="stylesheet" type="text/css" href="css/index.css">
  23. <link rel="stylesheet" href="lib/OnsenUI/css/onsenui.css">
  24. <link rel="stylesheet" href="lib/OnsenUI/css/onsen-css-components.min.css">
  25. <script src="lib/OnsenUI/js/onsenui.min.js"></script>
  26. </head>
  27. <body>
  28. <br><br><br><br>
  29. <ons-page>
  30. <ons-toolbar>
  31. <div class="left"><ons-toolbar-button><a href="index.html">Home</a></ons-toolbar-button></div>
  32. <div class="center">Cultura</div>
  33. </ons-toolbar>
  34. <div>
  35. <ons-scroller>
  36. <table id="table" align="center" border=1>
  37. <tr>
  38. <th>Nombres</th>
  39. <th>Especificaciones</th>
  40. <th>Teléfono</th>
  41. <th>E-mail</th>
  42. <th>Municipio</th>
  43. </tr>
  44. <script type="text/javascript" src="js/test.js"></script>
  45. </table>
  46. </ons-scroller>
  47. </div>
  48. </ons-page>
  49. <script type="text/javascript" src="cordova.js"></script>
  50. <script type="text/javascript" src="js/index.js"></script>
  51. </body>
  52. </html>