BulletedList.aspx font size:
<html>
<head>
<title>Adding BulletedList Items Declaratively</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<style>
   .navList li { padding: 4 } 
</style>
</head>

<body>
<!-- #include virtual="~/shared/top.inc -->
<div class="header"><h2>Adding BulletedList Items Declaratively</h2></div>

<!-- #include virtual="~/shared/viewsrc_top.inc" -->
<hr size=1 width=92%>

<form runat="server">
<blockquote>
<asp:bulletedlist id="navList"
   displaymode="hyperlink"
   target="_blank"  
   runat="server"
   bulletstyle="customimage"
   bulletimageurl="~/shared/razz.gif"
   cssclass="navList">

   <asp:listitem text="Microsoft" value="http://www.microsoft.com"/>
   <asp:listitem text="ASP.NET" value="http://www.asp.net"/>
   <asp:listitem text="MSN" value="http://www.msn.com"/>
   <asp:listitem text="MSNBC News" value="http://www.msnbc.msn.com"/>
   <asp:listitem text="GotDotNet" value="http://www.gotdotnet.com"/>
   <asp:listitem text="MSDN" value="http://msdn.microsoft.com"/>
   <asp:listitem text="MSN Shopping" value="http://shopping.msn.com"/>
   <asp:listitem text="MSN Autos" value="http://autos.msn.com"/>
   <asp:listitem text="MapPoint" value="http://www.mappoint.com"/>
   <asp:listitem text="MSN City Guides" value="http://local.msn.com"/>
   <asp:listitem text="MSN Music" value="http://music.msn.com"/>

</asp:bulletedlist>
</blockquote>

</form>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>