💾 Archived View for unbon.cafe › villapirorum › web › hello-world captured on 2024-08-25 at 00:28:19. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2024-05-10)
-=-=-=-=-=-=-
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 ))));