PHPackages                             yukanoe/html - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. yukanoe/html

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

yukanoe/html
============

A PHP library - Minimal, Simple and Portable DOM.

1.1.0(1y ago)0131MITPHP

Since Jul 22Pushed 1y agoCompare

[ Source](https://github.com/yukanoe/html)[ Packagist](https://packagist.org/packages/yukanoe/html)[ Docs](https://github.com/yukanoe/html)[ RSS](/packages/yukanoe-html/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)DependenciesVersions (16)Used By (0)

Yukanoe\\HTML PHP library!
==========================

[](#yukanoehtml-php-library)

A PHP library , Simple, minimal and portable DOM.

**Try:** [demo-01.yukanoe.org](https://github.com/yukanoe/demo-01.yukanoe.org)

1 Installation
--------------

[](#1-installation)

```
composer require yukanoe/html
```

2 Table of Contents
-------------------

[](#2-table-of-contents)

- [Class `Yukanoe\HTML\Tag`](./docs/CLASS-TAG.md)
- [Private HTML Attributes](./docs/HTML-ATTRIBUTES.md)
- (optional) [Overview](./overview.md)
- (optional) [Test/Demo Directory](./tests)
- (optional) [Examples Directory](./examples)
- (optional) [Class TagManager](./docs/CLASS-TAG-MANAGER.md)

3 Get started
-------------

[](#3-get-started)

### Create Tag

[](#create-tag)

```
use Yukanoe\HTML\Tag;

$myTag = new Tag(string $name='', array $attribute=[],  string $text='');
```

### INPUT (Server: index.php)

[](#input-server-indexphp)

```
