# web >**NOTE** > >This component is supported since API version 6. Updates will be marked with a superscript to indicate their earliest API version. The **Web** component displays web page content. ## Required Permissions ohos.permission.INTERNET, required only for accessing online web pages. ## Constraints The **Web** component does not follow the transition animation. A page allows only one **Web** component. ## Child Components Not supported ## Attributes | Name| Type| Default Value| Mandatory| Description| | -------- | -------- | -------- | -------- | -------- | | src | string | - | No |Address of the web page to be displayed. The domain name of the website must compile with the HTTPS protocol and have received an ICP license.| | id | string | - | No | Unique ID of the component. | ## Styles Universal style settings are not supported. ## Events The following events are supported. | Name| Parameter| Description| | -------- | -------- | -------- | | pagestart | {url: string} | Triggered when web page loading starts.| | pagefinish | {url: string} | Triggered when web page loading is completed. | | error | {url: string, errorCode: number, description: string} | Triggered when an error occurs during web page loading or opening. | ## Methods The following methods are supported. | Name| Parameter| Description| | -------- | -------- | -------- | | reload | - | Reloads a page.| ## Example ```html