-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (71 loc) · 2.58 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<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">
</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">
<!-- <div class="mdl-cell mdl-cell--12-col" style="text-align: center;">Loading</div> -->
<div class="mdl-cell mdl-cell--6-col" >
<div class="mdl-card mdl-shadow--2dp" style="width: 100%;">
<div class="mdl-card__title">
<h4 >
City: Austin, Tx <br />
Temperature: 88 f<br />
Weather: Partly Cloudy<br />
</h4>
</div>
</div>
</div>
<div class="mdl-cell mdl-cell--6-col" >
<div class="mdl-card mdl-shadow--2dp" style="width: 100%;">
<div class="mdl-card__title">
<h4 >
City: Austin, Tx <br />
Temperature: 88 f<br />
Weather: Partly Cloudy<br />
</h4>
</div>
</div>
</div>
<div class="mdl-cell mdl-cell--6-col" >
<div class="mdl-card mdl-shadow--2dp" style="width: 100%;">
<div class="mdl-card__title">
<h4 >
City: Austin, Tx <br />
Temperature: 88 f<br />
Weather: Partly Cloudy<br />
</h4>
</div>
</div>
</div>
<div class="mdl-cell mdl-cell--6-col" >
<div class="mdl-card mdl-shadow--2dp" style="width: 100%;">
<div class="mdl-card__title">
<h4 >
City: Austin, Tx <br />
Temperature: 88 f<br />
Weather: Partly Cloudy<br />
</h4>
</div>
</div>
</div>
</div>
</div>
</body>
</html>