💾 Archived View for unbon.cafe › villapirorum › web › hello-world captured on 2024-05-10 at 12:20:12. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2024-03-21)
-=-=-=-=-=-=-
Back to test pages
001 <?php require_once(__DIR__."/../../dom/dom.php");002 use function dom\{init,output,html,head,body,main,h1,p,a};003 004 init();005 006 output(html(head().body(main(007 h1("Hello world!").008 p(a("Back to test pages", "..")).009 p(this())010 ))));