比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

Set the content attribute to 0, if you want it to load immediately.


Code Block
languagexml
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="refresh" content="seconds; url=URL"/>
</head>
<body>
</body>
</html>


Example

Code Block
languagexml
<!DOCTYPE html>
<html>
   <head>
      <title>HTML Meta Tag</title>
      <meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
   </head>
   <body>
      <p>Hello HTML5!</p>
   </body>
</html>

...