Continue
Document Refreshing
A <meta> tag can be used to specify a duration after which your web page will keep refreshing automatically.
Example
If you want your page keep refreshing after every 5 seconds then use the following syntax.
<!DOCTYPE html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Hetadata" />
cneta name="description" content="Learning about Meta Tags." />
cneta name="revised" content="Tutorialspoint, 3/7/2014" /> cmeta http-equiv="refresh" content="" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
Comments
Post a Comment