Param tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The param tag defines the parameters for the plugin associated with the object tag.
In HTML 5, two new tags have been added to embed audio and video files, which are the audio tag and the video tag.
Using
For example , use the param tag to assign parameters to the embedded img object.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>Học html miễn phí tại web888.vn</h1> <object data="img.jpg"> <param name="width" value="600" /> <param name="height" value="400" /> </object> </body> </html>