
If you have a use-case where you want to refresh a webpage on the client browser every x seconds or minute, you can make use of the meta tag in the head section with attributes http-equiv="refresh" and content with a value of the interval in which the page should be refreshed in seconds.
Example: Refresh Page every 5 minutes
<html>
<head>
<meta http-equiv="refresh" content="300">
</head>
....
....
</head>
</html>
Note: Make sure to add the meta tag in the head section of the HTML page.
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Html,
- HTML5 HELLO WORLD Example
- All directional arrows codes for HTML
- Adding Sub Headings to Bootstrap Header tags
- Create HTML button that looks like a href hyperlink
- 70+ HTTP Error Codes CheatSheet
- Comprehensive 256 Ascii code table with Html Hex IBM Microsoft Key
- How to set background color in HTML page?
- Obsolete marquee element alternatives html5
- Base 64 Index, Character and Binary Table
- Get HTML table td, tr or th inner content value with id or name attribute
- Align html element at the center of page vertically and horizontally
- How to add multiple spaces between html page text
- The author stylesheet specified in tag script is too long - document contains 21759 bytes whereas the limit is 10000 bytes
- How to pretty print HTML using Java Code
- W3 HTML validator warning Unable to Determine Parse Mode
- Hyperlink in html (anchor tag) without a underline
- reCaptcha Verification expired. Check the checkbox again
- Auto Refresh Webpage after every x Second or Minute using Meta Tag?
- Chessboard with pieces using pure HTML and CSS
- Default speed of Marquee tag : SCROLLAMOUNT
- Fibonacci series from 1 to 500 table
- 9 Border to DIV Element in HTML Examples
- How to remove old 404 pages ulrs from Google crawler
- Simple Crossword Puzzle example using Pure HTML, CSS and JavaScript
- How to make a div tag clickable
More Posts:
- How to resolve Failed to create interpreter PyCharm Error - Python
- [Solution] Exception in thread main java.util.EmptyStackException - Java
- Command: How to scp a file to remote server location? - HowTos
- Create Custom Android AlertDialog - Android
- How to install Java 11 on Mac - Java
- 20 - Python - Print Colors for Text in Terminal - 1000+ Python Programs - Python-Programs
- Add X days from today in Command Line - HowTos
- Fix: error: could not lock config file /etc/gitconfig: Permission denied - Git