CSCI N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Navigation, Links & Images
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Goals By the end of today’s lecture, you should … … understand how to create relative paths to files.… understand how to create relative paths to files. … understand how to create absolute paths to files.… understand how to create absolute paths to files.
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science First, A Few Notes … In web development, we use the forward slash ( / ) to indicate a directory.In web development, we use the forward slash ( / ) to indicate a directory. Always begin with the current document in mind.Always begin with the current document in mind. Use../ to go back a directory level.Use../ to go back a directory level.
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Absolute Links To create a link to another site (one outside of your own public_html directory), use the full URL for the site: create a link to another site (one outside of your own public_html directory), use the full URL for the site: To include a link for your , use the mailto: protocol: include a link for your , use the mailto: protocol:
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Fill in the Blank public_html images index.html smiley.gif Create an in index.html to display the image smiley.gif. ANSWER:
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Fill in the Blank public_htmlabout_us index.html Create a link from beginnings.html to index.html. ANSWER: Our Home Page history beginnings.html
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Fill in the Blank public_htmlabout_us support.html Create a link from beginnings.html to support.html. ANSWER: Our Support Page history beginnings.html services
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Fill in the Blank public_html support.html Create a link from support.html to IUPUI’s website. ANSWER: Visit IUPUI services
N241: Fundamentals of Web Development Copyright ©2006 Department of Computer & Information Science Questions?