how to put icon on php? in my index.php where i can put the code? heres my index. php
<?php
include("./include/auth.php");
include("./include/top_header.php");
?>
<table width="98%" align="center">
<tr>
<td class="textArea">
<strong>You are now logged into <a href="about.php">Cacti</a>. You can follow these basic steps to get
started.</strong>
<ul>
<li><a href="host.php">Create devices</a> for network</li>
<li><a href="graphs_new.php">Create graphs</a> for your new devices</li>
<li><a href="graph_view.php">View</a> your new graphs</li>
</ul>
</td>
</tr>
</table>
<?php
include("./include/bottom_footer.php");
?>
Thx in Advance!