How to make a calculator using HTML, css, javaScript
Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript. Let's learn through this video how to develop a web based simple calculator using these things. HTML, css, javaScript භාවිතයෙන් සරල කැල්කියුලේටර් එකක් develope කරන හැටි Watch the video now : https://youtu.be/DHEjJW_Tx0U Check out my youtube channel : https://www.youtube.com/channel/UCLD_EGJOhzPx4qu1OhOfeJg Outcome : Here is the code : <html> <head> <script> function insert(num) { document.form.textView.value = document.form.textView.value + num } function equal...