-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (135 loc) · 4.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="css/font.css">
<link rel="stylesheet" href="css/material.min.css">
<link rel="stylesheet" type="text/css" href="css/demoStyle.css">
<script src="js/material.min.js"></script>
</head>
<body>
<!-- Simple header with scrollable tabs. -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">Example Website</span>
</div>
<!-- Tabs -->
<div class="mdl-layout__tab-bar mdl-js-ripple-effect">
<a href="#scroll-tab-1" class="mdl-layout__tab is-active">Trains</a>
<a href="#scroll-tab-2" class="mdl-layout__tab">Films</a>
<a href="#scroll-tab-3" class="mdl-layout__tab">Weather</a>
<a href="#scroll-tab-4" class="mdl-layout__tab">Tab 4</a>
<a href="#scroll-tab-5" class="mdl-layout__tab">Tab 5</a>
<a href="#scroll-tab-6" class="mdl-layout__tab">Tab 6</a>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Title</span>
</div>
<main class="mdl-layout__content">
<section class="mdl-layout__tab-panel is-active" id="scroll-tab-1">
<div class="page-content mdl-grid" >
<!-- List with avatar and controls -->
<style>
.demo-list-control {
width: 300px;
}
.demo-list-radio {
display: inline;
}
</style>
<style>
.demo-list-two {
width: 600px;
}
</style>
<div ></div>
<ul class="demo-list-control mdl-list" id="stations">
<!-- <li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<i class="material-icons">train</i>
Bryan Cranston
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="list-checkbox-1">
<input type="checkbox" id="list-checkbox-1" class="mdl-checkbox__input" checked />
</label>
</span>
</li> -->
</ul>
</div>
</section>
<section class="mdl-layout__tab-panel" id="scroll-tab-2">
<div class="page-content">
<!-- Textfield with Floating Label -->
<div class="mdl-grid" style="justify-content: center;">
<form action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="film">
<label class="mdl-textfield__label" for="film">Film</label>
</div>
</form>
<!-- Icon button -->
<button class="mdl-button mdl-js-button mdl-button--icon" id="filmSearch">
<i class="material-icons">search</i>
</button>
</div>
<section class="mdl-grid" id="poster" style="justify-content: center">
</section>
</div>
</section>
<section class="mdl-layout__tab-panel" id="scroll-tab-3">
<div class="page-content mdl-grid">
<!-- Event card -->
<div class="demo-card-event mdl-card mdl-shadow--2dp mdl-cell">
<div class="mdl-card__title mdl-card--expand">
<h4 id="weather">
</h4>
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect">
London
</a>
<div class="mdl-layout-spacer"></div>
<i class="material-icons">
cloud
</i>
</div>
</div>
</div>
</section>
<section class="mdl-layout__tab-panel" id="scroll-tab-4">
<div class="page-content">
<!-- Two Line List with secondary info and action -->
<table>
<thead>
<tr>
<th>Quantity</th>
<th>Unit price</th>
</tr>
</thead>
<tbody>
<td>
<tr>
as
</tr>
</td>
</tbody>dasdas
</table>
</div>
</section>
<section class="mdl-layout__tab-panel" id="scroll-tab-5">
<div class="page-content"><!-- Your content goes here --></div>
</section>
<section class="mdl-layout__tab-panel" id="scroll-tab-6">
<div class="page-content"><!-- Your content goes here --></div>
</section>
</main>
</div>
</body>
<script type="text/javascript" src="js/tripPlanner.js"></script>
<script type="text/javascript" src="js/weather.js"></script>
<script type="text/javascript" src="js/film.js"></script>
</html>