\\n \\n
\\n
\\n\\n \\n
\\n \\n
\\n HTML iframe frameborder Attribute |
\\nIn this tutorial, you will learn how to use HTML's
iframe The tag and its frameborderProperty.\\n HTML iframe Tag
\\nHTML 'siframe The tag is used to embed another document into the current page. It allows you to display another webpage or content within a webpage.
<iframe src="https://www.example.com"></iframe>HTML iframe frameborder Attribute
\\nframeborderThe attribute is used to set whether to display the frame border. This attribute can take two values:
- \\n
0οΌNoShow border.\\n
\\n<iframe src="https://www.example.com" frameborder="0"></iframe>\\n 1οΌShow border.\\n
```html\\n<iframe src="https://www.example.com" frameborder="1"></iframe>\\n
By default,\\n```frameborder The value of the attribute is 1, which displays the border.
Summary
\\nThrough this document, you have learned how to use HTML'siframe The tag and its frameborderAttribute to embed other documents and control the display of borders.
YouTip