S2
jS
Learn
Create Your Own
Split Screen
Go to Live Site
Next Page
We'll start just with some
plain HTML
— some
buttons
in a
div
.
Looks a
little bit
like a calculator.
<HTML> <title> My Calculator </title> <body> <div> <button>1</button> <button>2</button> <button>3</button> <br> <button>4</button> <button>5</button> <button>6</button> <br> <button>7</button> <button>8</button> <button>9</button> <br> <button>0</button> <button>.</button> <br> <hr> <button>+</button> <button>*</button> <button>CLR</button> <br> <button>-</button> <button>/</button> <button>=</button> </div> </body> </html>