-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathROOMS.HTML
118 lines (109 loc) · 3.14 KB
/
ROOMS.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<style>
table {
max-width:100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
}
table#t01 tr:nth-child(odd) {
background-color:#fff;
}
table#t01 th {
background-color: black;
color: white;
}
th, td {
padding: 15px;
}
</style>
</head>
<body>
<br>
<table id="t01">
<tr>
<th>ROOM</th>
<th>OUTLOOK</th>
<th>Max. Capacity</th>
<th>Room Facilities</th>
<th>Suitability</th>
<th>Building</th>
<th>Food/Drinks Allowed</th>
</tr>
<tr>
<td>207</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>120</td>
<td>Desk with chairs; Green board and Markers and Projector</td>
<td>Lectures/Tutorials/Seminars</td>
<td>Mandi</td>
<td>NO</td>
</tr>
<tr>
<td>208</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>80</td>
<td>Chairs; White Board and Projector</td>
<td>Lectures/Conferences/Seminars/Presentations</td>
<td>Mandi</td>
<td>NO</td>
</tr>
<tr>
<td>PCLab_01</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>40</td>
<td>Desktop with chairs; White board and Markers</td>
<td>Lectures/Labs</td>
<td>Mandi</td>
<td>NO</td>
</tr>
<tr>
<td>211</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>40</td>
<td>Desk with Benches; Green board and Markers</td>
<td>Lectures/Tutorials</td>
<td>Mandi</td>
<td>NO</td>
</tr>
<tr>
<td>212</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>40</td>
<td>Desk with Benches; White-board and Markers</td>
<td>Lectures/Tutorials</td>
<td>Mandi</td>
<td>NO</td>
</tr>
<tr>
<td>213</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>50</td>
<td>Desk with chairs; Green board and Markers</td>
<td>Lectures/Tutorials</td>
<td>Mandi</td>
<td>YES</td>
</tr>
<tr>
<td>214</td>
<td><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyOdpoBuoVnD_uzXsRr3ykPrFgly20LkI5VCRPqVE8PEOm_YLa" alt="Mountain View" style="width:200px;height:150px"></td>
<td>40</td>
<td>Desk with chairs; White board and Markers</td>
<td>Lectures/Tutorials</td>
<td>Mandi</td>
<td>YES</td>
</tr>
</table>
</body>
</html>