<title>Change an Element's Class with JavaScript</title>
<h1>This is a heading</h1>
<p>This is a paragraph of text.</p>
<button type="button" onclick="addSingleClass()">Add Highlight Class</button>
<button type="button" onclick="addMultipleClass()">Add Bordered and Padded Class</button>
<button type="button" onclick="removeSingleClass()">Remove Highlight Class</button>
<button type="button" onclick="removeMultipleClass()">Remove Bordered and Padded Class</button>
<button type="button" onclick="toggleClass()">Toggle Hide Class</button>
var elem = document.getElementById("content");