Skip to main content

Code Editor


OUTPUT


Comments

Popular posts from this blog

Create a side Bar

 Create a Side Bar in HTML Creating a sidebar is pretty cool easy to understand. If you don't understand anything, feel free to comment or message me. CODE <!DOCTYPE html> <html>     <head>         <title>Creating a side bar</title>     </head>     <body>         <div id="nav">         <div id="nav_open">&#9776;</div>         <div id="nav_con">             <a href="#">Link1</a>             <a href="#">Link2</a>             <a href="#">Link3</a>         </div>         </div>         <style>             #nav_open{                 font-si...

Creating A calculator using html

CREATE A SIMPLE CALCULATOR USING HTML Creating a calculator is one of the most recommended beginner's project. Hence, I decided to make it my first post. First I created the table so that all the buttons are placed in a tabular form. Then the form, so that all the buttons works perfectly. Then, I added the styling using Css  And Lastly, I added the Scripting to make the buttons functional. The scriptings are All in the onclick event attribute.         <center><form name="calculator">    <table>       <tr>          <td colspan="6">            <input type="text" name="display" id="display"placeholder="0"disabled>                      </td>       </tr>       <tr>             <td><input type="button" nam...