Dom Obj Title
# HTML DOM Title Object
* * *
## Title Object
The Title object represents an HTML `` element.
### Accessing the Title Object
You can access the `` element using `getElementsByTagName()`:
```javascript
var x = document.getElementsByTagName("TITLE");
(#)
### Creating a Title Object
You can create a `` element using the `document.createElement()` function:
```javascript
var x = document.createElement("TITLE");
(#)
## Title Object Properties
| Property | Description |
| --- | --- |
| (#) | Sets or returns the text content of the document's title element |
## Standard Properties and Events
The Title object supports standard (#) and (#).
* * *
## Related Articles
HTML Tutorial: (#)
HTML Reference: [HTML `` Tag](#)
YouTip