0502-Other html tags

other html tags

1. Framework  

1、<frameset><frame/><frameset>

Note: There cannot be <body></body> in the html document, and the two cannot exist at the same time

          cols is arranged horizontally rows is arranged vertically 300, * means that the current module occupies all the upper and lower parts of 300 and belongs to the second module

         frameborder The border of the frame The src in the frame tag is the page address introduced by the page

<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <frameset rows="200,*" frameborder="0">
        <frame src="https://www.baidu.com" />
        <frame src="http://xyq.163.com/" />
    </frameset>
</html>

 

2、<iframe></iframe>

Note: The src in the iframe tag is the page address introduced by the page width width height height scrolling whether to display scroll bars

   function of the frameborder frame    

<body>
        <iframe src="https://map.baidu.com/" width="500" height="500"></iframe>
    </body>

3. Other labels

①, marquee label to realize the scrolling of text and pictures

       direction implements scrolling in different directions

  Note: The default height is 200 and the width is the width of the browser

②, mark mark function 

③, <hr/> horizontal line

④, <video> </video> tag attributes:

          autoplay autoplay If present, the video will play as soon as it is ready

           controls controls If present, displays controls to the user, such as a play button

            height sets the height of the video player

           loop loop If this attribute is present, when the media file finishes playing, it will start playing again, and it will play in a loop.

          preload preload If present, the video is loaded on page load and ready to play

          This property is ignored if "autoplay" is used

          src the url of the video to play

          width sets the width of the video player

<body>
        <video src="http://v.youku.com/662fb9b8-7f9e-432a-b9e8-a1c8c76a6376" height="">
        </video>
    </body>

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325132437&siteId=291194637