-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathindex.html
24 lines (23 loc) · 901 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Material Starter Kit</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the Material stylesheet -->
<link rel="stylesheet" href="dist/bundle.css">
</head>
<body class="mdc-typography">
<h1 class="mdc-typography--headline3">Hello, Material Starter Kit!</h1>
<p class="mdc-typography--body1">
A starter kit to get you up and running with Material Components for the Web. <a href="https://glitch.com/~material-starter-kit">Remix and start theming.</a>
</p>
<br>
<button class="foo-button mdc-button mdc-button--raised">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Hello World</span>
</button>
<!-- import the Material javascript file -->
<script src="dist/bundle.js" async></script>
</body>
</html>