如何在HTML中使用元标记

时间:2015-08-12 20:02:34

标签: html meta

我想创建一个链接,在指向数据之前会延迟5秒。我被告知可以使用元标记。

请查看我的代码:

<html>
<head>
    <title> ABC.com</title>
</head>
<body>
<table border="1" cellspacing="0" cellpadding="0" width=768>
    <tr>
        <td>ABC.com Logo</td>
    </tr>
    <tr>
        <td align="center">
            <a href="http://www.google.com"> LOGIN </a>
        </td>
    </tr>
    <tr>
        <td align="right"> copyright abc.com</td>
    </tr>
</table>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

将此添加到您的头标记:

<meta http-equiv="refresh" content="5;URL=http://example.com/somepage.html">

&#34; 5&#34;是你的5秒延迟,URL是你想要重定向到的任何页面。

顺便说一句,作为初级开发人员,Google is your friend