Html learning (6) - framework

黄舟
Release: 2016-12-29 15:38:04
Original
1112 people have browsed it

Frame tag:

<frameset>
Copy after login
The frame tag cannot be placed in
<body>
Copy after login
Copy after login
. Generally, for the readability of the code, it will be placed in
<head>
Copy after login
Between
<body>
Copy after login
Copy after login

When the size of the frame does not want to be changed by dragging the mouse, you can add the noresize attribute to the frame tag. This attribute does not The attribute value, called the mark attribute, is fixed when added. In the XHTL specification, all attributes must have attribute values, then the attribute value of the mark attribute is itself, such as:

noresize="noresize"
Copy after login

The following code shows a simple The use of the frame tag, the frame contains 3 html pages.

[code]

    <head>
        
        image
        
    

     

    
        

        
            
            
        

    

    <body>

    
Copy after login
[code]


    <head>
        
        top
        

    
    <body>

        

这是我的网站LOGO

Copy after login
[code]


    <head>
        
        left
        

    
    <body>

        

左边栏链接

链接一 链接二 链接三
Copy after login
[code]


    <head>
        
        top
        

    
    <body>

        

这是我的网站LOGO

Copy after login

The above is the content of Html learning (6) - framework. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template