Link to External Resource Materials in Your Coursework

You can add links in your questions, assignments, or announcements to resource materials hosted outside of WebAssign. For example, you might have materials hosted on your school's Web servers, or you might want to point your students to a YouTube video or materials that another colleague has shared with you. To add links to external resources, use the HTML <a> tag as described in this topic.

How-toInstructor HelpWebAssign

You can link to external resources in the following course materials:

Questions

You can add links in the Question, Answer, or Solution.

Assignments

You can add links in the Instructions.

Announcements

You can add links in the body of an announcement.

  1. Open the question, assignment, or announcement in which you want to add the link.

  2. Type the following code where you want to add the link:

    <a href="web_address" target="_blank">link_text</a>

    where

    • web_address is the Web address (often called URL) of the resource material to which you want to link.
    • link_text is the text of the link that you want to show your students.

    For example, you could link to one of the student help topics using the following code:

    <a href="https://help.cengage.com/webassign/student_guide/t_s_answering_multiple_choice.htm" 
    target="_blank">How to answer multiple-choice questions</a>

    This link would behave like this: How to answer multiple-choice questions.