mirror of
https://github.com/thomaspcole/SvelteQuickstart.git
synced 2024-11-23 02:48:27 -05:00
34 lines
883 B
HTML
34 lines
883 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Svelte Material App</title>
|
||
|
|
||
|
<link rel='icon' type='image/png' href='./favicon.png'>
|
||
|
|
||
|
<style>
|
||
|
body{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||
|
}
|
||
|
|
||
|
div{
|
||
|
height: 100vh;
|
||
|
width: 100%;
|
||
|
display: grid;
|
||
|
place-content: center;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<h3>You appear to be offline.</h3>
|
||
|
<p>An internet connection is required to use this app.</p>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|