|
7 | 7 | <!-- Window title. --> |
8 | 8 | <title>Antigravity</title> |
9 | 9 | <!-- Window logo. --> |
10 | | - <link rel="icon" type="image/png" href="/rsrcs/media/icon-favicon.png" /> |
| 10 | + <link rel="icon" type="image/png" href="rsrcs/media/icon-favicon.png" /> |
11 | 11 | <!-- |
12 | 12 | External CSS stylesheet: 'https://www.w3schools.com/html/html_css.asp', 'https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/link'. |
13 | 13 | - In this case, PyScript CSS. |
14 | 14 | --> |
15 | 15 | <link rel="stylesheet" href="https://pyscript.net/releases/2025.8.1/core.css" /> |
16 | 16 | <!-- External (local) CSS stylesheet, with multiple external CSS links. ORDER MATTERS! 'https://www.programminghead.com/how-to-link-multiple-css-style-sheets-in-html'. --> |
17 | | - <link rel="stylesheet" href="/rsrcs/io_inputs/app/config/css_styles/style-loading_splashscreen.css"> |
18 | | - <link rel="stylesheet" href="/rsrcs/io_inputs/app/config/css_styles/style.css"> |
| 17 | + <link rel="stylesheet" href="rsrcs/io_inputs/app/config/css_styles/style-loading_splashscreen.css"> |
| 18 | + <link rel="stylesheet" href="rsrcs/io_inputs/app/config/css_styles/style.css"> |
19 | 19 | <!-- |
20 | 20 | Script call; e.g. this js script tag bootstraps PyScript. |
21 | 21 | - NOTE: threated as deferred script. Ref. 'https://stackoverflow.com/questions/436411/where-should-i-put-script-tags-in-html-markup/24070373#24070373'. |
|
29 | 29 | - 'module' scripts: 'https://neerajdana.medium.com/understanding-type-module-in-javascript-a-comprehensive-guide-ebb13926da7a'. |
30 | 30 | - 'module' vs. 'non-module' scripts: 'https://neerajdana.medium.com/understanding-type-module-in-javascript-a-comprehensive-guide-ebb13926da7a'. |
31 | 31 | --> |
32 | | - <script type="module" src="/rsrcs/io_inputs/app/config/code_functionalities/app-loading_splashscreen.js"></script> |
| 32 | + <script type="module" src="rsrcs/io_inputs/app/config/code_functionalities/app-loading_splashscreen.js"></script> |
33 | 33 | </head> |
34 | 34 | <body> |
35 | 35 | <!-- Main dialog (as 'modal', defined in js module 'app-loading_splashscreen.js'), what appears 1st as sson as web page is loaded. --> |
@@ -129,7 +129,7 @@ <h2>Example with 'pyscript.display': display date and time. DOESN'T USE 'target= |
129 | 129 | </section> |
130 | 130 | <section class="main-pyscript"> |
131 | 131 | <b>Based on xkcd: antigravity <a href="https://xkcd.com/353/" target="_blank">https://xkcd.com/353/</a>.</b> |
132 | | - <script type="py" src="/rsrcs/io_inputs/app/config/code_functionalities/main.py" config="/rsrcs/io_inputs/app/config/code_imports/main-pyscript.json" defer></script> |
| 132 | + <script type="py" src="rsrcs/io_inputs/app/config/code_functionalities/main.py" config="rsrcs/io_inputs/app/config/code_imports/main-pyscript.json" defer></script> |
133 | 133 | <!-- |
134 | 134 | TODO: investigate how to redirect output to an html element. |
135 | 135 | - So far, un-successful; e.g. use 'svg' element. |
|
0 commit comments