How to create an HTML link to a page on RWC site rather than a web address?

I remember learning how to do this. I want to create an HTML link that links to a page in my RWC project rather than a web address because I haven’t published the pages yet and want it all working when I publish. I believe it’s a certain “class” but can’t remember. I can’t use the RWC “link” button feature because it’s not available in an HTML stack.

Thanks!

Hey @Spacemonkey,

Copy the path from the page you want to link to, you can find this in the inspector (see screenshot). Choose the “Copy Path” option.

Once you have the path, you’ll need to add it to the html link, like this:

<a href="/contact">Click here<a/> to contact me.

Hope that helps!

1 Like

Thanks! I had thought there was a way to just name the page, but this works! Thank you!