You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Page meta description for indexers, like Google. This is the page description what appears when searching with Google. -->
8
+
<metaname="description" content="Portfolio of exercises using PyScipt, for Python implementation in web-browsers." />
7
9
<!-- Window title. -->
8
10
<title>PyScript Exercises</title>
9
11
<!-- Window logo. Goes up x5 folder levels to get to 'media' ([CURRENT DIR.] < web_pages < config < app < io_inputs < rsrcs > media), where it's stored. -->
@@ -65,6 +67,7 @@ <h1>PyScript Exercises.</h1>
65
67
<p>This is a list of exercises to study <code>PyScript</code>. These exercises come from the <b><ahref="https://docs.pyscript.net/2024.5.2/examples/" target="_blank">official PyScript documentation</a></b>, where several examples are listed, starting with basics such as '<ahref="https://pyscript.com/@examples/hello-world/latest" target="_blank">Hello World</a>', and digging into <ahref="https://pyscript.com/@examples/altair/latest" target="_blank">plotting data</a>.</p>
66
68
<br>
67
69
<divclass="main-content-tiles">
70
+
<!-- 'articles' are meant to be pieces of content that can be re-usable and independent (e.g. a tweet, or highlighted comment on YouTube). 'article' DOES NOT IMPLIES IT'S EXCLUSIVELY A TEXT'S ARTICLE. -->
<!-- Page meta description for indexers, like Google. This is the page description what appears when searching with Google. -->
8
+
<metaname="description" content="'Hello World' exercise implementation, for portfolio of exercises using PyScipt, for Python implementation in web-browsers." />
7
9
<!-- Window title. -->
8
10
<title>Hello World | PyScript Exercises</title>
9
11
<!-- Window logo. Goes up x5 folder levels to get to 'media' ([CURRENT DIR.] < web_pages < config < app < io_inputs < rsrcs > media), where it's stored. -->
<!-- Page meta description for indexers, like Google. This is the page description what appears when searching with Google. -->
8
+
<metaname="description" content="'Antigravity' exercise implementation, for portfolio of exercises using PyScipt, for Python implementation in web-browsers." />
7
9
<!-- Window title. -->
8
10
<title>Antigravity | PyScript Exercises</title>
9
11
<!-- Window logo. Goes up x5 folder levels to get to 'media' ([CURRENT DIR.] < web_pages < config < app < io_inputs < rsrcs > media), where it's stored. -->
<!-- Page meta description for indexers, like Google. This is the page description what appears when searching with Google. -->
8
+
<metaname="description" content="'Pandas' exercise implementation, for portfolio of exercises using PyScipt, for Python implementation in web-browsers." />
7
9
<!-- Window title. -->
8
10
<title>Pandas | PyScript Exercises</title>
9
11
<!-- Window logo. Goes up x5 folder levels to get to 'media' ([CURRENT DIR.] < web_pages < config < app < io_inputs < rsrcs > media), where it's stored. -->
display: grid; /* Column layout, instead of using Flexbox. */
177
+
/* Alternative to using media queries, for adjusting layout based on dimensions. */
178
+
grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); /* DYNAMIC columns creation, by 'repeating' 'default' configuration (i.e. '1fr'), if conditions are met: MINIMUM 280px avaiable to create ANOTHER column; ie. to repeat 'default' configuration. */
0 commit comments