Hi:
SAS wants to repeat the title statement on every "logical" page. So it sounds like that's what you're getting with your multiple tables. If what you want is just some text at the top of all your tabulate output, then I suggest using the TEXT= option.
cynthia
[pre]
title;
footnote;
ods html file='text_title.html' style=sasweb;
ods html text='<center><H2>Text String Looks Like Title</H2></center>';
proc tabulate data=sashelp.shoes;
where region in ('Asia', 'Canada', 'Pacific');
class region product;
var sales;
table region,
product,
sales*(mean sum);
run;
ods html close;
[/pre]