301 Moved Permanently means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 OK is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: svi.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="description" content="" /> <meta name="author" content="" /> <title>svi</title> <!-- Favicon--> <link rel="icon" type="image/x-icon" href="assets/favicon.ico" /> <!-- Core theme CSS (includes Bootstrap)--> <link href="css/styles.css" rel="stylesheet" /> </head> <body> <!-- Header - set the background image for the header in the line below--> <header class="py-5 bg-image-full" style="background-image: url('assets/background.png')"> <div class="text-center my-5"> <img class="img-fluid rounded-circle mb-4" src="assets/svi-logo.png" style="width:75px;" alt="..." /> <h1 style="font-size:5em; font-weight:bold; color: white;">2,897,073,023</h1> <p class="text-white-50 mb-0">API Operations</p> </div> </header> <!-- Content section--> <section class="py-5"> <div class="container my-5"> <div class="row justify-content-center"> <div class="col-lg-6"> <p class="lead"> <table class="table"> <th> </th><th>STATUS</th><th>LATENCY</th> <tr> <td><span style="color:DarkGreen;">●</span></td> <td>SERVICE</td> <td>19 ms</td> </tr> <tr> <td><span style="color:DarkGreen;">●</span></td> <td>API_RESPONSE</td> <td>30 ms</td> </tr> </table> </p> </div> </div> </div> </section> <!-- Image element - set the background image for the header in the line below--> <div class="py-5 bg-image-full" style="background-image: url('assets/background-btm.png')"> <!-- Put anything you want here! The spacer below with inline CSS is just for demo purposes!--> <div style="height: 1rem"></div> </div> <!-- Footer--> <footer class="py-5 bg-black"> <div class="container"><p class="m-0 text-center text-white">© 2025 SVI</p></div> <div class="container"><p class="m-0 text-center" style="padding-top: 1em;" id="elapsedTime"></div> </footer> <!-- Bootstrap core JS--> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> <!-- Core theme JS--> <script src="js/scripts.js"></script> <script> function timeElapsedSinceUnixTimestamp(timestamp) { // Convert timestamp to milliseconds const timestampInMs = timestamp * 1000; // Get current time in milliseconds const nowInMs = Date.now(); // Calculate elapsed time in milliseconds const elapsedTimeInMs = nowInMs - timestampInMs; // Convert elapsed time to seconds const elapsedTimeInSeconds = elapsedTimeInMs / 1000; // Calculate days, hours, minutes, and seconds const days = Math.floor(elapsedTimeInSeconds / 3600 / 24); const hours = Math.floor(elapsedTimeInSeconds / 3600) % 24; const minutes = Math.floor(elapsedTimeInSeconds / 60) % 60; const seconds = Math.floor(elapsedTimeInSeconds) % 60; // Format elapsed time const elapsedTimeString = `${days} days, ${hours} hours, ${minutes} minutes, ${seconds} seconds`; return elapsedTimeString; } // Example usage const timestamp = 1701316421; const elapsedTime = timeElapsedSinceUnixTimestamp(timestamp); document.getElementById("elapsedTime").textContent = `Event time elapsed: ${elapsedTime}`; </script> </body> </html>