diff --git a/Calculator/index.html b/Calculator/index.html
new file mode 100644
index 0000000..5940c0a
--- /dev/null
+++ b/Calculator/index.html
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+ Calculator
+
+
+
+
+
+
+
+
+
+ | AC |
+ % |
+ / |
+
+
+ | + |
+ - |
+ x |
+
+
+ | 7 |
+ 8 |
+ 9 |
+
+
+ | 4 |
+ 5 |
+ 6 |
+
+
+ | 1 |
+ 2 |
+ 3 |
+
+
+ | . |
+ 0 |
+ = |
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Calculator/scripts.js b/Calculator/scripts.js
new file mode 100644
index 0000000..c7cba26
--- /dev/null
+++ b/Calculator/scripts.js
@@ -0,0 +1,61 @@
+var a = '';
+var b = '';
+var num = [];
+var ans;
+
+// All the numbers and operators input will be stored in an array "num" using function "sendNum()"
+function sendNum(digit){
+
+ num.push(digit);
+
+ if(num.length != 1){
+ a = '';
+ document.getElementById('screen').innerHTML = a; // clearing the screen.
+ }
+
+
+ for(i=0; i 0){
+ num.pop(); // emptying the array "num"
+ }
+
+ num.push(ans.toString());
+
+
+}
+
+
+// When user presses "AC", function "clearScr()" is called
+function clearScr(){
+ document.getElementById('screen').innerHTML = '';
+
+ while(num.length > 0){
+ num.pop(); // emptying the array "num"
+ }
+
+ a ='';
+ b ='';
+}
\ No newline at end of file
diff --git a/Calculator/styles.css b/Calculator/styles.css
new file mode 100644
index 0000000..0d27e6c
--- /dev/null
+++ b/Calculator/styles.css
@@ -0,0 +1,47 @@
+div{
+ background-color: #334d4d;
+ margin: 50px;
+ width: 350px;
+ height: 550px;
+ margin: 0 auto; /* horizontally centreing an element */
+ border-radius: 20px;
+ padding: 10px;
+}
+
+header{
+ background-color: #d1e0e0;
+ width: 330px;
+ height: 100px;
+ border-radius: 20px;
+ margin: 0 auto;
+ font-size: xx-large;
+ color: #000000;
+ text-align: center;
+
+}
+
+table{
+ background-color: #FFFFFF;
+ margin: 0 auto;
+ margin-top: 20px;
+ margin-right: 10px;
+ margin-left: 10px;
+ border-radius: 20px;
+}
+
+td{
+ width: 110px;
+ height: 60px;
+ text-align: center;
+ font-size: xx-large;
+
+}
+
+.orange{
+ color: #ff3300;
+}
+
+td:active{
+ background-color: #e0e0d1;
+ border-radius: 20px;
+}
\ No newline at end of file
diff --git a/Calender-App/cyber.png b/Calender-App/cyber.png
new file mode 100644
index 0000000..2812abf
Binary files /dev/null and b/Calender-App/cyber.png differ
diff --git a/Calender-App/index.html b/Calender-App/index.html
new file mode 100644
index 0000000..9ab8784
--- /dev/null
+++ b/Calender-App/index.html
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+ Calendar
+
+
+
+
+
+
+
+
+
+ Cyber-Group Holidays Calendar
+
+
+
+
+
+
+
+
MADE BY VIKAS UPADHAYAY
+
+
+
+
+
+
+
+