-
Notifications
You must be signed in to change notification settings - Fork 0
/
mission7.html
138 lines (129 loc) · 5.59 KB
/
mission7.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Starts -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ini adalah website untuk Pemrograman Web Kelas B">
<meta name="author" content="Bryan Yehuda Mannuel">
<meta name="theme-color" content="#fff" />
<title>Website Pemrograman Web Kelas B</title>
<!-- Meta Ends -->
<!-- CSS Starts -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
<!-- CSS Ends -->
</head>
<body>
<!-- Main Starts-->
<br><br>
<div class="container">
<div class="row center">
<div class="col s4">
<img class="responsive-img" src="./images/Badge_ITS.png">
</div>
<div class="col s4 offset-s4" style=" margin-top:70px; ">
<a class="waves-effect waves-light btn disabled"><i class="material-icons right">cloud</i>Tanggal Hari Ini</a>
</div>
</div><br><br>
<div class="row center">
<div class="col s3">
<div class="row">
<a class="waves-effect waves-light btn disabled black-text" style=" background-color: #01579b !important; color: black !important;"><i class="material-icons right">directions_car</i>Mobil 1</a>
</div>
<div class="row">
<a class="waves-effect waves-light btn disabled black-text" style=" background-color: #a7ffeb !important; color: black !important;"><i class="material-icons right">directions_car</i>Mobil 2</a>
</div>
<div class="row">
<a class="waves-effect waves-light btn lime accent-1 black-text" style=" margin-top:70px; "><i class="material-icons right">equalizer</i>Graph</a>
</div>
<div class="row">
<a class="waves-effect waves-light btn light-blue accent-1 black-text"><i class="material-icons right">expand_more</i>Export</a>
</div>
<div class="row">
<a class="waves-effect waves-light btn orange darken-4 black-text"><i class="material-icons right">exit_to_app</i>Logout</a>
</div>
</div>
<div class="col s9">
<table class="highlight centered responsive-table">
<thead>
<tr>
<th>No</th>
<th>On</th>
<th>Off</th>
<th>Acc By</th>
<th>Reason</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>2</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>3</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>4</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>5</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>6</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>7</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
<tr>
<td>8</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
<td>Lorem Ipsum</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Main Ends-->
<!-- Scripts Starts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js "></script>
<script src="js/materialize.js "></script>
<script src="js/init.js "></script>
<!-- Scripts Ends-->
</body>
</html>