💾 Archived View for unbon.cafe › villapirorum › web › hello-world captured on 2024-03-21 at 16:26:54. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
THIS PAGE IS WORK IN PROGRESS!
(Pages are generated from DOM.PHP lib. And hosting disk space is very limited here)
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 ))));