forked from Tmw/componentized-todo
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 720 Bytes
/
index.html
File metadata and controls
20 lines (19 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Componentized TODO</title>
<link rel="stylesheet" href="app.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='//fonts.googleapis.com/css?family=RobotoDraft:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet'>
<link rel="import" href="components/todo-app/component.html">
</head>
<body>
<todo-app>
<p class="fallback">
Whoops. Your browser doesn't support one or more of the Web Component
features needed to run this demo. Work is underway in Firefox, Safari
and (possibly) IE to change that. Chrome 36+ should run this demo fine
for now. Maybe next time!</p>
</todo-app>
</body>
</html>