Can I add a website hyperlink into a provisioning form?

Hi, here is the provisioning form script I’m trying to update:

  <ProvisioningForms>
    <Form name="Test Form">
      <ApplicationRef>
        <Reference class="sailpoint.object.Application" id="8ae18a975ff9abb801600c3be6a60b03" name="approverOnly"/>
      </ApplicationRef>
      <Attributes>
        <Map>
          <entry key="pageTitle" value="Test Form"/>
        </Map>
      </Attributes>
      <Description>Test Form</Description>
      <Section name="externalLink" type="text">
        <Field displayName="Link" displayOnly="true" displayType="textarea" name="information" reviewRequired="true">
          <Attributes>
            <Map>
              <entry key="contentIsEscaped" value="true"/>
            </Map>
          </Attributes>
          <Script>
            <Source>
              StringBuilder sb = new StringBuilder();
              sb.append("Please click on the link and read the relevant section before accepting:");
              sb.append("&lt;a href=\"https://www.google.com\" target=\"_blank\">EN&lt;/a>");

              return sb.toString();
            </Source>
          </Script>
        </Field>
      </Section>
      <Section name="agreement">
        <Field displayType="radio" helpKey="Acknowledgement is required for the request to proceed." name="Link Review Acknowledgement" required="true" reviewRequired="true" type="string">
          <AllowedValues>
            <String>I agree to the details provided.</String>
          </AllowedValues>
        </Field>
      </Section>
    </Form>
  </ProvisioningForms>