Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
palaashjain50 committed Nov 26, 2023
1 parent 21caff0 commit 19e236a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Study DevOps and implement CI/CD pipeline</title></head><body><main class="main" style="text-align: center;"><h1>Calculator</h1><input type="number" name="firstnumber" id="firstnumber" placeholder="Enter a number"> <select id="operator"><option value="add">+</option><option value="subtract">-</option></select> <input type="number" name="firstnumber" id="secondnumber" placeholder="Enter a number"> <button type="button" id="calculateBtn">Calculate</button><h2 id="result"></h2></main><script defer="defer" src="main.bundle.js"></script></body></html>
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Study DevOps and implement CI/CD pipeline</title></head><body><main class="main" style="text-align: center;"><h1>Calculator</h1><input type="number" name="firstnumber" id="firstnumber" placeholder="Enter a number"> <select id="operator"><option value="add">+</option><option value="subtract">-</option><option value="multiply">x</option><option value="divide">÷</option></select> <input type="number" name="firstnumber" id="secondnumber" placeholder="Enter a number"> <button type="button" id="calculateBtn">Calculate</button><h2 id="result"></h2></main><script type="module" src="index.js"></script><script defer="defer" src="main.bundle.js"></script></body></html>

0 comments on commit 19e236a

Please sign in to comment.