0N/A<html>
0N/A<head>
0N/A <title>Temperature Table</title>
0N/A</head>
0N/A<body>
0N/A
0N/A<h1>Temperature Table</h1>
0N/A<p>American tourists visiting Canada can use this handy temperature
0N/Atable which converts from Fahrenheit to Celsius:
0N/A<br><br>
0N/A
0N/A<table BORDER COLS=2 WIDTH="20%" >
0N/A<tr BGCOLOR="#FFFF00">
0N/A<th>Fahrenheit</th>
0N/A<th>Celsius</th>
0N/A</tr>
0N/A
0N/A<% for (int i = 0; i <= 100; i += 10) { %>
0N/A<tr ALIGN=RIGHT BGCOLOR="#CCCCCC">
0N/A<td><%= i %></td>
0N/A<td><%= ((i - 32) * 5 / 9) %></td>
0N/A</tr>
0N/A<% } %>
0N/A
0N/A</table>
0N/A<p><i>Created <%= new Date () %></i></p>
0N/A
0N/A</body>
0N/A</html>
0N/A