I have the following Javascript in order to create a back button to the previous page.
<script>// <![CDATA[
function goBack() { window.history.back() }
// ]]></script>
<button onclick="goBack()">Go Back</button>
I want to style my button by changing the background colour and text colour. However, I am not very experienced. I have searched but cannot find out if this is even a possibility.