Example of setting up and using the html floating frame (iframe loading html)

Example of setting up and using the html floating frame (iframe loading html)


Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Frame in HTML_Setting of floating frame</title>
</head>
<!--
Setting of floating frame: No need to remove the body tag format: <iframe>…</iframe>
Attribute Name Attribute Value Description
height pixels/% absolute/relative height
width pixels/% absolute/relative width Other attributes are the same as frameset except noresize
-->
<body>
<table align="left" border="1" width="600" height="500" cellspacing="0">
<tr height="100">
<td colspan="2">Title</td>

</tr>

<tr>
<td width="100" valign="top" align="center">
<a href="HTML tag syntax format.html" target="in">Homepage</a>
<a href="HTML form frame.html" target="in">First page</a>
<a href="HTML form detailed explanation.html" target="in">Page 2</a>
<a href="HTML hyperlink format and attributes.html" target="in">Page 3</a>
<a href="HTML's most commonly used control tags.html" target="in">Page 4</a>
</td>


<td>
<iframe width="100%" src="HTML tag syntax format.html" name="in" frameborder="0">

</iframe>
</td>
</tr></p> <p></table>
</body>
</html>

<<:  Analysis and opinions on the design of the product details description page on Taobao website (picture)

>>:  Implementation steps for docker deployment lnmp-wordpress

Recommend

Example of implementing dashed border with html2canvas

html2canvas is a library that generates canvas fr...

Collection of 25 fonts used in famous website logos

This article collects the fonts used in the logos...

Briefly talk about mysql left join inner join

Preface I have been busy developing a cold chain ...

MySQL uses events to complete scheduled tasks

Events can specify the execution of SQL code once...

An example of how Tomcat manages Session

Learned ConcurrentHashMap but don’t know how to a...

How to check PCIe version and speed in Linux

PCIE has four different specifications. Let’s tak...

Detailed explanation of MySQL 8's new feature ROLE

What problems does MySQL ROLE solve? If you are a...

Solution to the root password login problem in MySQL 5.7

After I found that the previous article solved th...

Detailed explanation of Linux system directories sys, tmp, usr, var!

The growth path from a Linux novice to a Linux ma...

MySQL 8.0.18 adds users to the database and grants permissions

1. It is preferred to use the root user to log in...

Basic ideas and codes for implementing video players in browsers

Table of contents Preface Summary of audio and vi...