Files
Portfolio/public/offline.html

55 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline - Damjan Savić</title>
<style>
body {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, sans-serif;
background: #000;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
}
.container {
padding: 2rem;
max-width: 600px;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
color: #ff6b00;
}
p {
margin-bottom: 2rem;
color: rgba(255, 255, 255, 0.8);
}
button {
background: #ff6b00;
color: #fff;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background: #e65a00;
}
</style>
</head>
<body>
<div class="container">
<h1>You're Offline</h1>
<p>It seems you've lost your internet connection. Please check your connection and try again.</p>
<button onclick="window.location.reload()">Try Again</button>
</div>
</body>
</html>