Ok, a couple of things I would change for starters is the use of double-double quotes.
Response.Write("<div align=""center"">" & ...
Should become:
Response.Write("<div align='center'>" & ...
IF you simply want slightly bigger bolder text, then the header tags <h1></h1>, <h2></h2> should do what you want. The best resource for HTML (imo) is
www.w3schools.com
Oh, and to tidy up your code, so that you're not repeating the same div's/styles/fonts for every record in your recordset, put the styles outside fo the loop
Code:
Response.Write("<div align='center'><h1>")
do while not oRS.EOF
Response.Write(oRS("ItemName") & " is below par level")
oRS.MoveNext
loop
Response.Write("</h1></div>")
Please ask if you don't understand anything I've written!
