Skip to content

Instantly share code, notes, and snippets.

@UlisesGascon
Created July 5, 2017 07:37
Show Gist options
  • Save UlisesGascon/1b158657fc879e8cd1fddc058c51c143 to your computer and use it in GitHub Desktop.
Save UlisesGascon/1b158657fc879e8cd1fddc058c51c143 to your computer and use it in GitHub Desktop.
Basic MDC Template
<!DOCTYPE html>
<html class="mdc-typography">
<head>
<title>hello World!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
</style>
</head>
<body>
<header class="mdc-toolbar mdc-toolbar--fixed">
<div class="mdc-toolbar__row">
<section class="mdc-toolbar__section mdc-toolbar__section--align-start"><span class="mdc-toolbar__title">SmartOKR</span></section>
</div>
</header>
<main>
<div class="bundles-grid mdc-layout-grid max-width left-align">
<div class="mdc-layout-grid__inner">
<h1>Hello World!!</h1>
</div>
</div>
</main>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script>
/*--- MDC ---*/
mdc.autoInit();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment