forked from praveen16/htmlbarebone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 loc) · 1.34 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en" data-ng-app="weatherApp">
<head>
<title>HTML Page</title>
<meta charset="utf-8">
<base href="./">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/material.indigo-orange.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.6/angular.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body style="background: #ccdeff">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Weather</span>
<div class="mdl-layout-spacer"></div>
</div>
</header>
<main class="mdl-layout__content" style="padding: 20px;">
<router-outlet></router-outlet>
</main>
<div class="mdl-grid">
<weather-info city="Austin" state="Texas"></weather-info>
<weather-info city="San Fransisco" state="California"></weather-info>
<weather-info city="New York" state="New York"></weather-info>
<weather-info city="Los Angeles" state="California"></weather-info>
</div>
</div>
</body>
</html>