Olá, estou usando um simples sistema de noticia em meu site porém quando add as noticias a ultima vai para baixo ou seja sempre a nova noticia vai ficando mais embaixo e teria que ser por cima.

Pagina incio.php:
Código PHP:
<style type="text/css">
<!--
.noticia a {
    font-size: 16px;
    color: #999999;
    font-weight: bold;
}
-->
</style>
<h2>Ultimas Not&iacute;cias</h2>
<br />
<? 
  $Query = mssql_query("select top 5 id,titulo,texto,link from Web_Hard order by id desc");
  for($i=0;$i<mssql_num_rows($Query);$i++) {
  $Array=mssql_fetch_row($Query);
?>
<div class="noticia"><a href="#" target="_blank"><?=$Array[1]?></a></div>
<?=$Array[2]?>
<br />
<br />
  <? } ?>
  </head>
  </body>
  </css>
Por favor me ajudem, agradeço desde já.