Help - Search - Members - Calendar
Full Version: Image not showing up in HTML
HTMLHelp Forums > Web Authoring > Markup (HTML, XHTML, XML)
throwaway
Hi, absolute beginner to HTML here. Trying to get a simple website up but images aren't loading. Here is the webpage for reference: http://acsweb.ucsd.edu/~gpc001/examples.html

Thank you for any help.

I've tried all of these formats for my picture (diff file names but all same picture):

<img src=“pr1.gif”>
<img src=“pracprob1.png”>
<img src=“http://acsweb.ucsd.edu/~gpc001/pracprob1.png”>
<img src=“http://acsweb.ucsd.edu/~gpc001/pracprob1.png”>
<img src="images/irTRAUW.gif">
<img src="images/irTRAUW.gif" />
<img src="../images/irTRAUW.gif" />
<img src="/images/irTRAUW.gif" />

"http://acsweb.ucsd.edu/~gpc001/pracprob1.png" (and other file paths) shows up when I enter it in the address bar but it fails when I put it in the <img....> or <a href=...> format.

Public html folder: IPB Image



Images folder: IPB Image
throwaway
Edit:
Using Safari, Mac version 10.###

Here's the HTML code for reference (still super basic, just trying to get past this image problem before attempting anything else).

<!DOCTYPE html>

<style>
li {
display:inline;
padding: 10px;
}
</style>

<body>
<center>
<h3>Try the problem first, then click the solution.</h3>

<nav>
<ul>
<li><a href="http://acsweb.ucsd.edu/~gpc001/">Home</a></li>
<li><a href=“solutions.html">AP Calculus Exam Solutions</a></li>
<li><strong><a href="examples.html">Practice Problems</a></strong></li>
<li><a href="misc.html">Helpful Resources</a></li>
<li><a href="contact.html">Contact Mr. Calculus</a></li>
</ul>
</nav>


<table>
<tr>
<th>Problem</th>
<th>Solution</th>
</tr>
<tr>
<th>Maximum length of a ladder able to go around a corner in a hallway <br>

<style type="text/css">
/* animated spoiler CSS by Bloggersentral.com */
.spoilerbutton {display:block;margin:5px 0;}
.spoiler {overflow:hidden;background: #f5f5f5;}
.spoiler > div {-webkit-transition: all 0.2s ease;-moz-transition: margin 0.2s ease;-o-transition: all 0.2s ease;transition: margin 0.2s ease;}
.spoilerbutton[value="Show"] + .spoiler > div {margin-top:-100%;}
.spoilerbutton[value="Hide"] + .spoiler {padding:5px;}
</style>

<input class="spoilerbutton" type="button" value="Show" onclick="this.value=this.value=='Show'?'Hide':'Show';">
<div class="spoiler"><div>
<img src=“images/irTRAUW.gif”>
</div></div>

</th>
<th>Solution</th>
</tr>
</table>

<img src=“http://acsweb.ucsd.edu/~gpc001/pracprob1.png”>
</center>

</body>
Christian J
QUOTE(throwaway @ Jan 11 2017, 12:51 AM) *

<img src=“pr1.gif”>
<img src=“pracprob1.png”>
<img src=“http://acsweb.ucsd.edu/~gpc001/pracprob1.png”>
<img src=“http://acsweb.ucsd.edu/~gpc001/pracprob1.png”>

The above uses the wrong kinds of doublequote characters. Avoid using an editor that inserts those.

CODE
<img src="images/irTRAUW.gif">
<img src="images/irTRAUW.gif" />

The above seems correct.

CODE
<img src="../images/irTRAUW.gif" />
<img src="/images/irTRAUW.gif" />

The above seems to use wrong image paths. See also http://htmlhelp.com/faq/html/basics.html#relative-url
throwaway
Oh my god I thought the problem was with the file path all along. I spent hours trying to fix it and it ended up being the quotation marks. TextEdit was converting my quotes to the wrong ones even though it was set to Plain Text, but I've fixed it now. Thank you for noticing!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2024 Invision Power Services, Inc.