You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ A set of classes that provide basic web pages creation utilities in addition to
57
57
58
58
The basic use case is to have HTML document with some text in its body. The class `HTMLDoc` represent HTML document. Simply, create an instance of this class and use it to build the whole HTML document. The class can be used as follows:
59
59
```php
60
-
use WebFiori\UI\HTMLDoc;
60
+
use WebFiori\Ui\HTMLDoc;
61
61
62
62
//This code will create HTML5 Document, get the <body> node and, add text to it.
63
63
$doc = new HTMLDoc();
@@ -85,7 +85,7 @@ The output of this code is HTML 5 document. The structure of the document will b
85
85
All HTML elements are represented as an instance of the class `HTMLNode`. Developers can extend this class to create custom UI components as classes. The library has already pre-made components which are used in the next code sample. In addition to that, the class has methods which utilize theses components and fasten the process of adding them as children of any HTML element. The following code shows a code which is used to create a basic login form.
0 commit comments