<html> <head> <!-- Customize this policy to fit your own app's needs. For more guidance, see: https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy Some notes: * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this: * Enable inline JS: add 'unsafe-inline' to default-src --> <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:;"> <!--these three for the calendar--> <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet"> <link rel="stylesheet" href="calendar_files/css/demo.css"/> <link rel="stylesheet" href="calendar_files/css/theme1.css"/> <!--this is for the search bar--> <link rel = "stylesheet" href = "css/searchbar1.css"> <meta name="format-detection" content="telephone=no"> <meta name="msapplication-tap-highlight" content="no"> <meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover"> <link rel="stylesheet" type="text/css" href="css/index.css"> <link rel="stylesheet" href="lib/OnsenUI/css/onsenui.css"> <link rel="stylesheet" href="lib/OnsenUI/css/onsen-css-components.min.css"> <script src="lib/OnsenUI/js/onsenui.min.js"></script> </head> <body> <br><br><br><br> <ons-page> <ons-toolbar> <div class="left"><ons-toolbar-button><a href="index.html">Home</a></ons-toolbar-button></div> <div class="center">Cultura</div> </ons-toolbar> <div> <ons-scroller> <table id="table" align="center" border=1> <tr> <th>Nombres</th> <th>Especificaciones</th> <th>Teléfono</th> <th>E-mail</th> <th>Municipio</th> </tr> <script type="text/javascript" src="js/test.js"></script> </table> </ons-scroller> </div> </ons-page> <script type="text/javascript" src="cordova.js"></script> <script type="text/javascript" src="js/index.js"></script> </body> </html>