An open API service indexing awesome lists of open source software.

https://github.com/mathsgod/html

A simple way to create html element
https://github.com/mathsgod/html

Last synced: about 1 year ago
JSON representation

A simple way to create html element

Awesome Lists containing this project

README

          

# html

## Description
A simple way to create html element

## How to use
```php
echo html("a")->href("https://google.com")->text("Hello world!");
//Hello world

echo html("div")->button->class("btn btn-xs")->type("submit")->text("Submit");
//

Submit

```