diff --git a/calc..html b/calc..html
new file mode 100644
index 0000000..e383a7d
--- /dev/null
+++ b/calc..html
@@ -0,0 +1,55 @@
+
+
+
+
+
+ Document
+
+
+
+
+ Calculator
+
+
+
+
diff --git a/calc.css b/calc.css
new file mode 100644
index 0000000..85d084b
--- /dev/null
+++ b/calc.css
@@ -0,0 +1,22 @@
+body{
+ background-color: rgb(182, 247, 144);
+ background-image: url(https://images.unsplash.com/photo-1559686475-c44247959fbc?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);
+}
+#screen{
+ width: 27%;
+ margin-left: 36px;
+ height: 40px;
+ margin-top: 30px;
+ pointer-events: none;
+}
+.btn{
+ width: 60px;
+ height: 45px;
+ margin-left: 30px;
+ margin-top: 30px;
+ font-size: 20px;
+ background-color: #f1e5e5;
+}
+
+
+
\ No newline at end of file
diff --git a/calc.js b/calc.js
new file mode 100644
index 0000000..bb92821
--- /dev/null
+++ b/calc.js
@@ -0,0 +1,12 @@
+function buttonClick(val)
+{
+ document.getElementById("screen").value=document.getElementById("screen").value+val;
+}
+function displayClear(){
+ document.getElementById("screen").value=""
+}
+function equalClick(){
+ var text=document.getElementById("screen").value
+ var result=eval(text)
+ document.getElementById("screen").value=result
+}
diff --git a/form.html b/form.html
new file mode 100644
index 0000000..8475c50
--- /dev/null
+++ b/form.html
@@ -0,0 +1,44 @@
+
+
+
+ Registration Form
+
+
+ Registration Form
+
+
+
+