# Html Generate
### Installation
Include Html class php file as instance a new object:
<?php
    include('html.php');
    $html = new Html;
?>
### Usage
<?php
    include('html.php');
    $html = new Html;
    
    $html->add(
        array(
            'tag'   =>  'h1',
            'text'  =>  'Hello Word!",
        )
    );
    
    //print html
    echo $html->getHtml();
    
?>
### Author
Tony Frezza - 
[email protected]