nemundo/html

Html Generator

Maintainers

Package info

github.com/nemundo/html

pkg:composer/nemundo/html

Statistics

Installs: 813

Dependents: 3

Suggesters: 0

Stars: 0

Open Issues: 0

6 2023-03-18 07:19 UTC

This package is auto-updated.

Last update: 2026-03-04 10:26:40 UTC


README

Generate Html Code

Installation

composer require nemundo/html

Example

$html = new \Nemundo\Html\Document\HtmlDocument();
$html->title = 'Document Example';

$h1 = new \Nemundo\Html\Heading\H1($html);
$h1->content = 'Hello World!';

$p = new \Nemundo\Html\Paragraph\Paragraph($html);
$p->content = 'Lorem ..';

$html->render();