<embed>标签定义嵌入的内容,比如插件。<embed> 标签是 HTML 5 中的新标签。


hidden:设置是否显示

src:嵌入内容的 URL。

loop:设置移动的次数

scrollamount:移动速度


<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>媒体标签</title>
<meta name="keywords" content="embed, 标签"/>
<meta name="description" content="<embed> 标签定义外部(非 HTML)内容的容器。(这是一个 HTML5 标签,在 HTML4 中是非法的,但是所有浏览器中都有效)。"/>
</head>
<body>
<!--
hidden:设置是否显示
src:嵌入内容的 URL。
loop:设置移动的次数
scrollamount:移动速度
-->
<embed height="100" width="300" src="饿狼传说.mp3" hidden="false"/>

<marquee loop="2" direction="right" scrollamount="60"> <font size="+3" color="red">请叫我木丁西。。。。</font></marquee>
<marquee direction="right" scrollamount="60"> <font size="30" color="red">请叫我木丁西。。。。</font></marquee>
<marquee direction="left" scrollamount="20"> <font size="30" color="red">请叫我木丁西。。。。</font></marquee>
</body>
</html>