Skip to content

Instantly share code, notes, and snippets.

@LucasCalazans
Last active June 11, 2019 02:51
Show Gist options
  • Save LucasCalazans/9b24f23ce5ef44d0c28176e050fa07ea to your computer and use it in GitHub Desktop.
Save LucasCalazans/9b24f23ce5ef44d0c28176e050fa07ea to your computer and use it in GitHub Desktop.
HTML to exemplify a simple usage of the app shell
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>App</title>
<meta name="Description" content="Best application ever" />
<meta charset="utf-8" />
<meta name="theme-color" content="#333333" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body>
<div id="main">
<div class="loader-container">
<span>We're preparing your data</span>
<div class="loader">
<div></div>
<div></div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment