SafeRoute / index.html
ayushsahu45's picture
Update index.html
824967f verified
raw
history blame contribute delete
791 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SafeRoute</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
font-family: Arial, sans-serif;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
.loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 18px;
color: #555;
}
</style>
</head>
<body>
<div class="loader">Loading SafeRoute...</div>
<iframe
src="https://safe-route-cyan.vercel.app"
onload="document.querySelector('.loader').style.display='none';">
</iframe>
</body>
</html>