How to embed other web pages in a web page using iframe

How to embed other web pages in a web page using iframe

How to use iframe:

Copy code
The code is as follows:

<DIV align=center><IFRAME src="<a href="https://www.jb51.net">https://www.jb51.net</a>" frameBorder=0 marginwidth=0 marginheight=0 scrolling=no style="width168:px;height:50px;" width=168 height=50 scrolling=no ALLOWTRANSPARENCY="true"></IFRAME></DIV>


Description: This is an example of an application that embeds a weather forecast. This effect is the most commonly used. in:

1. "https://www.jb51.net" is the address of the embedded web page;
2. width="168px" height="50px" are the width and height of the embedded web page. The larger the value, the larger the range. To hide the embedded content, set these two values ​​to 0;
3. scrolling="no" is the scrolling setting for the embedded web page. When the content range is large, it can be set to allow scrolling as scrolling="yes". ALLOWTRANSPARENCY="true" allows transparent settings, change true to no for opaque settings. Same below;
4. frameBorder=0 is the border setting for the embedded web page. 0 means no border, 1 means the thickness of the border. The larger the value, the thicker the border. Same below;
5. marginwidth=0 marginheight=0 Set the distance from the embedded web page to the margin, 0 means no margin.

<<:  Pure CSS to achieve the text icon function by taking the first character of the string

>>:  Summary of Nginx location and proxy_pass path configuration issues

Recommend

Tutorial on resetting the root password of Mac MySQL

Disclaimer: This password reset method can direct...

A brief discussion on Flex layout and scaling calculation

1. Introduction to Flex Layout Flex is the abbrev...

WeChat applet custom tabbar component

This article shares the specific code of the WeCh...

Do you know why vue data is a function?

Official website explanation: When a component is...

Node+express to achieve paging effect

This article shares the specific code of node+exp...

Comprehensive summary of mysql functions

Table of contents 1. Commonly used string functio...

A brief analysis of the difference between ref and toRef in Vue3

1. ref is copied, the view will be updated If you...

Which scenarios in JavaScript cannot use arrow functions

Table of contents 1. Define object methods 2. Def...

How to monitor Tomcat using LambdaProbe

Introduction: Lambda Probe (formerly known as Tom...

Detailed explanation of routes configuration of Vue-Router

Table of contents introduce Object attributes in ...

Six methods for nginx optimization

1. Optimize Nginx concurrency [root@proxy ~]# ab ...

CSS3 new layout: flex detailed explanation

Flex Basic Concepts Flex layout (flex is the abbr...

Complete step record of Vue encapsulation of general table components

Table of contents Preface Why do we need to encap...

CentOS server security configuration strategy

Recently, the server has been frequently cracked ...

Javascript uses the integrity attribute for security verification

Table of contents 1. Import files using script ta...