I created an image using paint.net and saved it as a .png file. However, when I try to display the image on my website, only the borders show up without any image content. Here is the code I used:
HTML
<a href="home.php"><img id="logo" src="../img/templog.png" /></a>
CSS
#logo {
align: left;
display: inline;
width: 100px;
height: 100px;
}
Despite having the correct path to the image file, only the borders of the image are visible in the web browser (Chrome).
Any help would be appreciated.