You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be added with JS, but also investigate options using pure HTML/CSS?
eg:
<scriptlanguage="javascript"type="text/javascript">
var fontSize = 24;
var tags = document.getElementsByTagName('p');
function incFontSize() {fontSize=fontSize+4;for(vari=0;i<tags.length;++i){tags[i].style.fontSize=fontSize+"px";}}functiondecFontSize(){fontSize=fontSize-4;for(vari=0;i<tags.length;++i){tags[i].style.fontSize=fontSize+"px";}}</script>
The text was updated successfully, but these errors were encountered:
This can be added with JS, but also investigate options using pure HTML/CSS?
eg:
The text was updated successfully, but these errors were encountered: