You can refresh a web page using javascript location.reload method.
<button onclick="refresh_page()">Refresh</button> <script> function refresh_page() { location.reload(); } </script>