US Congress Stock Trading API examples & templates
Use these vals as a playground to view and fork US Congress Stock Trading API examples and templates on Val Town. Run any example below or find templates that can be used as a pre-built solution.
janpaul123
valle_tmp_73638229528856289744219313877787
HTTP
This HTTP val creates a simple Wordle game using plain HTML, CSS, and JavaScript. The game follows the rules of the original Wordle. The HTML and CSS are embedded within the JavaScript for simplicity.
We use fun gradients, colors, and fonts to make it unique and visually interesting.
0
ije
html
Script
Rendering html with jsx - https://github.com/ije/html using JSX support Atomic CSS powered by UnoCSS dark mode(color scheme) /** @jsx h */
import { h, html } from "https://esm.town/v/ije/html";
export default () => {
return html(
<div class="flex items-center justify-center w-screen h-screen">
<p class="text-5xl font-bold text-green-600">Hello World!</p>
</div>
);
}; Demo: https://www.val.town/v/ije/htmlDemo
0