nemundo / html
Html Generator
Installs: 796
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/nemundo/html
Requires
- nemundo/core: *
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();