-
Notifications
You must be signed in to change notification settings - Fork 1
/
PageOfFame.aspx
66 lines (66 loc) · 2.74 KB
/
PageOfFame.aspx
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
<%@ Page Title="Flexible Tennis League | Page Of Fame" Language="C#" MasterPageFile="~/FlexibleTennisLeague.Master" AutoEventWireup="true" CodeBehind="PageOfFame.aspx.cs" Inherits="FlexibleTennisLeague.PageOfFame" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="contentGreyTopBorder" style="padding-top: 20px;">
<h1>Flexible Tennis League's Page of Fame</h1>
<h2>In appreciation of our past and present champions!!</h2>
<div style="margin-left: auto; margin-right: auto; width: 600px;">
<div style="float: left; margin-right: 50px;">
<table class="pofTable">
<tr>
<td colspan="2" class="pofTopTD">
Denver Spring 2010 Division Winner
</td>
</tr>
<tr>
<td rowspan="3" class="pofImgTD">
<img src="../Resources/Images/DenverSpring2010Winner.jpg" border="0" /><br />
Rob Jaecks
</td>
<td class="pofTD">
City: Denver, CO
</td>
</tr>
<tr>
<td class="pofTD">
Season Record: 6W - 1L
</td>
</tr>
<tr>
<td class="pofTD">
Member Since: 04/2010
</td>
</tr>
</table>
</div>
<div style="float: left">
<table class="pofTable">
<tr>
<td colspan="2" class="pofTopTD">
Denver Fall 2009 Division Winner
</td>
</tr>
<tr>
<td rowspan="3" class="pofImgTD">
<img src="../Resources/Images/DenverFall2009Winner.jpg" border="0" /><br />
Duane Cagle
</td>
<td class="pofTD">
City: Denver, CO
</td>
</tr>
<tr>
<td class="pofTD">
Season Record: 7W - 1L
</td>
</tr>
<tr>
<td class="pofTD">
Member Since: 08/2009
</td>
</tr>
</table>
</div>
<p style="clear:both"></p>
</div>
</div>
</asp:Content>