HTML의 Iframe은 다른 HTML 문서를 추가하기 위해 HTML 문서로 사용되는 인라인 프레임일 뿐입니다. 해당 웹페이지의 광고와 같은 다른 소스를 통해 다른 콘텐츠를 포함하기 위해 웹페이지나 웹 개발 프로세스에서 주로 사용됩니다.
대부분의 웹 디자이너는 Iframe을 사용하여 웹사이트나 웹페이지에 대화형 애플리케이션을 표시합니다. JavaScript나 HTML의 target 속성을 사용하면 가능합니다.
Iframe의 주요 목적은 다른 웹페이지 내에 웹페이지를 표시하는 것입니다. 인라인 프레임은
구문
<iframe src ="URL"></iframe>
예:
<iframe src ="www.educba.com" ></iframe>
<iframe src ="URL" height="value" width="value"></iframe>
예:
<iframe src ="www.educba.com" height="300" width="300"></iframe>
<iframe src ="URL" style="height: value in pixels; width: value in pixels"></iframe>
예:
<iframe src ="www.educba.com" style="height:300px; width:300px;"></iframe>
<iframe src ="URL" style="border : none;"></iframe>
다음 구문을 사용하여 iframe을 링크의 대상으로 사용할 수 있습니다.
<iframe src ="URL" name="iframe_a"></iframe>
예:
<iframe src ="www.educba.com" name="iframe_a"></iframe>
Iframe에는 다양한 속성 태그가 사용됩니다. 그 내용은 다음과 같습니다.
다음은 HTML의 Iframe에 대한 몇 가지 예입니다. 이에 대한 설명은 다음과 같습니다.
특정 높이와 너비를 가진 iframe을 만드는 방법을 보여주는 한 가지 예를 살펴보겠습니다.
코드:
<!DOCTYPE html> <html> <body> <h2>HTML Iframes Demo</h2> <p>Here, we are showing an example of Iframe which containing specific Height and width in pixels format</p> <iframe src="C:\Users\Sonali\Desktop\HTML block elements.html" height="300" width="300"></iframe> </body> </html>
출력:
특정 높이와 너비를 가진 iframe을 만드는 방법을 보여주는 또 다른 예를 살펴보겠습니다. 하지만 이 예에서는 CSS를 통해 높이와 너비를 지정합니다. 여기서 스크롤 막대가 콘텐츠 크기에 따라 조정되는 것을 볼 수 있습니다.
코드:
<!DOCTYPE html> <html> <body> <h2>HTML Iframes Demo</h2> <p>Here, we are showing an example of Iframe which containing specific Height and width in pixels format</p> <iframe src="C:\Users\Sonali\Desktop\HTML block elements.html" style="height:100px;width:300px;"></iframe> </body> </html>
출력:
Here we are considering one example in which we will add a border to the iframe by adding some extra CSS properties to show a change in the border’s size, change in the border color, etc. So we can add as much style to our iframe.
Code:
<!DOCTYPE html> <html> <body> <h2>HTML Iframes Demo</h2> <p>Here we are showing an example of Iframe which containing a border with some additional CSS proprties</p> <iframe src="C:\Users\Sonali\Desktop\iframe.html" style="border:3px solid Blue; height: 200px;"></iframe> </body> </html>
Output:
Let’s consider another example where we will show how the target attribute opens a webpage link using an iframe.
Code:
<!DOCTYPE html> <html> <body> <h2>Iframe Demo- Target for a Link</h2> <iframe height="200px" width="100%" src="C:\Users\Sonali\Desktop\iframe1.html" name="iframe1_a"></iframe> <p><a href="https://www.educba.com/courses/">EDUCBA</a></p> <p>When the target of a link matches the name of an iframe, the link will open in the iframe.</p> </body> </html>
Output:
Target Output:
As shown above, for example, we can click on the target link EDUCBA so that it will open the following web page shown below.
An iframe is an inline frame that includes another HTML document in itself. It is the most powerful HTML element for web designing. You can add content from another source. It uses different HTML attributes like Global Attributes, Event Attributes, etc.
위 내용은 HTML의 iframe의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!