You could easily make an "Hello world" in CSS using pseudo-element and a pseudo class ( :before/:after ) using the "content" property. Like so: ```css .element:after { content: "Hello world" } ```