<embed> Tags: defining embedded content
<embed src= "" type= ""/>
Embed properties:
1.SRC: Embedded Content Address
2.type: Type See http://www.iana.org/assignments/media-types/media-types.xhtml
3.width
4.height
<fieldset> Tags: You can group related elements within a form,<legend> labels define headings for fieldset elements
<form>
<fieldset>
<legend> Health Information </legend>
Height: <input type= "text"/>
Weight: <input type= "text"/>
</fieldset>
</form>
<figure> Tags: Specify separate stream content (images, charts, photos, code, and so on, the content of the figure element should be related to the main content, but if deleted, it should not affect the flow of the document.)
The <figcaption> element adds a caption (caption) to the figure, and the "figcaption" element should be placed in the position of the first or last child element of the "figure" element.
Demo
<figure>
<p> the Lupu Bridge on the Huangpu River </p>
</figure>
It is recommended to use a second
<figure>
<figcaption> the Lupu Bridge on the Huangpu River </figcaption>
</figure>
HTML Series Tutorials--embed fieldset legend Figure Figurecaption