The question I'm working on:
- mypage.html is stored in the folder Alice, in the folder Web Pages, in Root.
- logo.jpg is stored in the folder IMG, in the folder Resources, in Web Pages, in Root.
- Write the tag that will display the logo in mypage.html using an absolute url with scheme "http" and port "80".
Now, I (approximately) do most of this:
<img src="http:/webpages/resources/img/logo.jpg">
However I cannot find an example of how or where to specify the port number using a path like this.
Could anyone help point out to me where to include it? (And also if my progress above is actually correct?)