blob: 21407650648ae55969865725bdcd173efea94c9d (
plain)
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Water Source</title>
</head>
<body>
The current pipe system connects to four different sources. Be aware that only
a limited amount of water can be taken from some sources.
<br>
<table border=1>
<tr>
<td>Source</td>
<td>Amount</td>
</tr>
<tr>
<td>Foundain</td>
<td>4000</td>
</tr>
<tr>
<td>River</td>
<td>6000</td>
</tr>
<tr>
<td>Lake</td>
<td>10000</td>
</tr>
<tr>
<td>Public Water System</td>
<td>unlimited</td>
</tr>
</table>
</body>
</html>
|