<html>
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Algebra Problems</title>
</head>
<body>
<h1>Let's Do Some <b>algebra</b>!</h1>
<h2>By: Kira</h2>
<h1>
<button onclick = "oneVar()"> Get a <b> ONE VARIABLE</b> equation</button>
<br>
<button onclick="twoVar()"> Get a <b>TWO VARIABLE</b> equation </button>
<br>
<button onclick="answerPrb()"> Answer your own <b>TWO VARIABLE</b> equation </button>
</h1>
<!-- MODAL CODE -->
<button id="myBtn">How to solve a 2 variable equation!</button>
<!-- The Modal -->
<div id="Modal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>The 6 steps to solving a 2-variable equation:</h2>
<p><b>5a + 2b = 3 <br> 4a + 5b = 6</b></p>
<p>1) Find <b>a </b>on its own: <br><b>a = (3-2b)/5 </b><br>
2) Substitute into the other equation: <br><b> 4((3-2b)/5) + 5b = 6 </b> <br>
3) Multiply (only if there are fractions): <br><b>4(3-2b) + 25b = 30 </b> <br>
4) Distribute:<br> <b>12 - 8b + 25b = 30</b> <br>
5) Combining like terms: <br><b>17b = 18</b> <br>
6) Divide <br><b> b = 18/17 </b> <br> <br>
AND YOU'RE DONE!!! :D
</p>
</div>
</div>
</body>
</html>
body{
font-family: 'Quicksand', sans-serif;
color: #00e69d;
}
button{
font-family: 'Quicksand', sans-serif;
border: 2px solid #00e69d;
border-radius: 6px;
background-color: white;
padding: 6px;
transition-duration: 0.15s;
color: #00e69d;
font-size: 17px;
}
button:hover {
background-color: #00e69d; /* Green */
color: white;
font-weight: 700;
padding: 12px;
}
h1{
font-size: 34px;
color: #00e69d;
text-shadow: 2px 2px 3px #66ffcf;
font-weight: 500;
}
h2{
text-shadow: 2px 2px 3px #66ffcf;
font-weight: 500;
}
/* MODAL CODE*/
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
padding-top: 70px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: scroll; /* Enable scroll if needed */
background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #00e69d;
margin: auto;
padding: 20px;
border: 0px solid #888;
width: 80%;
padding-top: 0;
font-size: 17px;
color: white;
}
/* The Close Button */
.close {
font-size: 0px;
}
span{
1500px;
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |