Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<style>
/* You can create your own classes */
.row0{
color: #eeeeee; /* Hex RBG Color for foreground*/
}
.row1{
color: #aaaaee;
}
/* Or you can overide existing tag defaults */
table{
width:75%;
}
</style>
</head>
<body>
<table>
<tr class="row0">
<td>
...
<table style="width:75%;border:1px solid #dddddd;">
while not rst.EOF
RecordCounter = RecordCounter + 1
Response.Write "<tr class='row" & RecordCounter mod 2 & "'>"
wend
<HTML>
<HEAD>
<TITLE>Maryland Basketball Alumni <%=Now%></TITLE>
<STYLE>
.colHead{
font-size:3pt;
color:yellow;
font-weight:bold;
background-color:red;
text-align:center;
}
.colCell{
font-weight:bold;
font-style:italic;
color:#222277; /* should be navyish */
text-align:center;
}
.row_0{
background-color:white;
}
.row_1{
background-color:#dddddd; /* light gray */
}
</STYLE>
</HEAD>
.
.
.
Response.Write "<TABLE BORDER='1' cellspacing='0'>"
Response.Write "<TR>"
Response.Write "<TD class='colHead'>" & "Last Name" & "</TD>"
Response.Write "<TD class='colHead'>" & "First Name" & "</TD>"
Response.Write "<TD class='colHead'>" & "Team" & "TD>"
.
.
.
Dim rowCtr
Do While Not objRec.EOF
Response.Write "<TR class='row_" & rowCtr mod 2 & "'>"
Response.Write "<TD class='colCell'>" & objRec("PlayerLname") & "</TD>"
Response.Write "<TD class='colCell'>" & objRec("PlayerFname") & "</TD>"
Response.Write "<TD class='colCell'>" & objRec("Team") & "</TD>"
.
.
.
rowCtr = rowCtr + 1
objRec.MoveNext
Loop
.
.
.
.colHead{
border:1px solid #666666;
font-size:3pt;
color:yellow;
font-weight:bold;
background-color:red;
text-align:center;
}