File: source.html

package info (click to toggle)
qt4-perl 4.5~~svn1145508-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,144 kB
  • ctags: 5,947
  • sloc: perl: 29,224; cpp: 18,849; xml: 98; makefile: 91; sh: 4
file content (33 lines) | stat: -rw-r--r-- 874 bytes parent folder | download | duplicates (2)
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>