I can't add a gif to my HTML file.
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    <div class="header">
        <div class="navigation">
            <ul class="nav-list">
                <li><a href="#" title="Home">Home</a></li>
                <li><a href="#" title="About">About</a></li>
            </ul>
        </div><!--end of navigation -->
    </div><!--end of header -->
    <header>
        <img id="headerLogo" src="images/headerLogo.gif" alt="Starbuzz Coffee logo image">
        <img id="headerSlogan" src="images/headerSlogan.gif" alt="Providing all the...">
    </header>
</body>
</html>
I inserted the gif in the project folder, in WebContent folder of the project and in src folder of the project and none of those work. Can someone tell me why?