diff --git a/examples/helloworld.py b/examples/helloworld.py index ad597f9..574a88a 100644 --- a/examples/helloworld.py +++ b/examples/helloworld.py @@ -2,7 +2,12 @@ import ltk -hello = ltk.Text("Hello World") def create(): - return hello.attr("name", "Hello World") \ No newline at end of file + return ( + ltk.VBox(ltk.Text("Hello World")) + .css("padding", 100) + .css("background-color", "orange") + .css("font-size", 42) + .attr("name", "Hello World") + ) \ No newline at end of file