1
0

Added cool buttons

This commit is contained in:
Deven Blake 2020-09-25 16:16:06 -04:00 committed by GitHub
parent 0f107fb034
commit a6d7e6462f

View File

@ -44,5 +44,10 @@
<p><a href="/films">check out my favorite movies</a></p>
<p><a href="/home">check out a web browser landing page i made</a></p>
<p><a href="/textediting">here are my opinions on text editing</a></p>
<hr size="1" width="25%" align="left">
<p><small>The following buttons use JavaScript to modify the page title.</small></p>
<input type="button" value="infix (algrebraic)" onclick="document.title='(d+(7-s))';" />
<input type="button" value="prefix (s-expression)" onclick="document.title='(+ d (- 7 s))';" />
<input type="button" value="postfix (rpn)" onclick="document.title='d 7 s - +';" />
</BODY>
</HTML>