-
Notifications
You must be signed in to change notification settings - Fork 24
/
ramais.php
executable file
·150 lines (119 loc) · 2.36 KB
/
ramais.php
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
145
146
147
148
149
150
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tables</title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<style type="text/css">
<!--
body {
font: 75%/1.6 "Myriad Pro", Frutiger, "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Verdana, sans-serif;
}
.clear {
clear: both;
}
table {
border-collapse: collapse;
width: 50em;
border: 1px solid #666;
}
caption {
font-size: 1.2em;
font-weight: bold;
margin: 1em 0;
}
col {
border-right: 1px solid #ccc;
}
col#albumCol {
border: none;
}
thead {
background: #ccc url(images/bar.gif) repeat-x left center;
border-top: 1px solid #a5a5a5;
border-bottom: 1px solid #a5a5a5;
}
th {
font-weight: normal;
text-align: left;
}
#playlistPosHead {
text-indent: -1000em;
}
th, td {
padding: 0.1em 1em;
}
.odd {
background-color:#edf5ff;
}
tr:hover {
background-color:#3d80df;
color: #fff;
}
thead tr:hover {
background-color: transparent;
color: inherit;
}
-->
</style>
</head>
<body>
<table cellspacing="0" id="" summary="">
<caption>Ramais da Assembleia de Deus em Bayeux</caption>
<colgroup>
<col id="Ramal" />
<col id="artistCol" />
<col id="albumCol" />
</colgroup>
<thead>
<tr>
<th scope="col">Ramal</th>
<th scope="col">Setor</th>
<th scope="col">Responsável</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>17</td>
<td>Gabinete Pastoral</td>
<td>Pr. Antônio Ferreira</td>
</tr>
<tr>
<td>11</td>
<td>Secretaria Executiva</td>
<td>Pb. Jailton C Bruce e Dc. David Félix</td>
</tr>
<tr class="odd">
<td>12</td>
<td>Secretaria de Missoes</td>
<td>Pb. Jailton C Bruce e Dc. Moisés</td>
</tr>
<tr>
<td>13</td>
<td>USADEBY</td>
<td>Ir. Glória</td>
</tr>
<tr class="odd">
<td>14</td>
<td>Tesouraria</td>
<td>Ir. Hilton </br> Ira. Sunamita</td>
</tr>
<tr>
<td>15</td>
<td>Sala EBD</td>
<td>Ev. Marcos Guarabira</td>
</tr>
<tr class="odd">
<td>16</td>
<td>Ação Social</td>
<td>Ir. Judith</td>
</tr>
<tr>
<td>19</td>
<td>Portaria</td>
<td>Dc. Wanderlei Dias</td>
</tr>
</tbody>
</table>
</body>
</html>