From a3e7b378b17f961761b302d2ecdf814ed4c00f7c Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Thu, 4 Oct 2018 08:22:30 +0530
Subject: [PATCH 1/9] Create simpleinterest.html
---
simpleinterest.html | 50 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 simpleinterest.html
diff --git a/simpleinterest.html b/simpleinterest.html
new file mode 100644
index 0000000..57b66e6
--- /dev/null
+++ b/simpleinterest.html
@@ -0,0 +1,50 @@
+
+
+
+ Simple Interest Calculation
+
+
+
+
+
+
+
+
+
+
From e4f719fe85c1216f7e7df2415f1d097b61319e4e Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Fri, 26 Oct 2018 14:36:34 +0530
Subject: [PATCH 2/9] Create registration form
---
registration form | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 registration form
diff --git a/registration form b/registration form
new file mode 100644
index 0000000..c2af870
--- /dev/null
+++ b/registration form
@@ -0,0 +1,22 @@
+
+
+ registration form
+
+
+
+
+
+
+
From e979f6e70d3f0553893edefd651aceda5acad591 Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Fri, 26 Oct 2018 14:37:41 +0530
Subject: [PATCH 3/9] Create test.html
---
test.html | 3 +++
1 file changed, 3 insertions(+)
create mode 100644 test.html
diff --git a/test.html b/test.html
new file mode 100644
index 0000000..d5b8295
--- /dev/null
+++ b/test.html
@@ -0,0 +1,3 @@
+
+this is test
+
From aaf74b3dd2bf167822a930ec8ec225e99c6a71d5 Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Fri, 26 Oct 2018 14:38:04 +0530
Subject: [PATCH 4/9] Rename registration form to registration.html
---
registration form => registration.html | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename registration form => registration.html (100%)
diff --git a/registration form b/registration.html
similarity index 100%
rename from registration form
rename to registration.html
From d8e4c7ebe8a0e068b661397ee738178469249e14 Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Thu, 6 Dec 2018 09:45:55 +0530
Subject: [PATCH 5/9] Add files via upload
---
Stopwatch.js | 59 +++++++++++++++++++++++++++++++++++++++++++++++
newStopwatch.html | 16 +++++++++++++
2 files changed, 75 insertions(+)
create mode 100644 Stopwatch.js
create mode 100644 newStopwatch.html
diff --git a/Stopwatch.js b/Stopwatch.js
new file mode 100644
index 0000000..8e2a297
--- /dev/null
+++ b/Stopwatch.js
@@ -0,0 +1,59 @@
+let sec=0;
+let min=0;
+let hr=0;
+let displaySec=0;
+let displayMin=0;
+let displayHr=0;
+let interval= null;
+let status= "stopped";
+function stopwatch(){
+ sec++;
+ if(sec/60 === 1){
+ sec=0;
+ min++;
+ if(min/60 === 1){
+ min=0;
+ hr++;
+ }
+ }
+ if(sec<10){
+ displaySec="0" + sec.toString();
+ }
+ else {
+ displaySec=sec;
+ }
+ if(min<10){
+ displayMin="0" + min.toString();
+ }
+ else {
+ displayMin=min;
+ }
+ if(hr<10){
+ displayHr="0" + hr.toString();
+ }
+ else {
+ displayHr=hr;
+ }
+ document.getElementById("display").innerHTML = displayHr + ":" + displayMin + ":" + displaySec;
+}
+function startstop(){
+ if(status==="stopped"){
+ interval=window.setInterval(stopwatch,1000);
+ document.getElementById("startstop").innerHTML="Stop";
+ status="started";
+ }
+ else{
+ window.clearInterval(interval);
+ document.getElementById("startstop").innerHTML="Start";
+ status="stopped";
+ }
+}
+function reset(){
+ window.clearInterval(interval);
+ sec=0;
+ min=0;
+ hr=0;
+ document.getElementById("display").innerHTML="00:00:00";
+ document.getElementById("startstop").innerHTML="Start";
+}
+// window.setInterval(stopwatch,1000);
\ No newline at end of file
diff --git a/newStopwatch.html b/newStopwatch.html
new file mode 100644
index 0000000..fbc403c
--- /dev/null
+++ b/newStopwatch.html
@@ -0,0 +1,16 @@
+
+
+ Stopwatch
+
+
+
+
+
+ 00:00:00
+
+
+
+
+
+
+
\ No newline at end of file
From 1532573af27090da2dcfcab9e62b7b06fb286044 Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Thu, 6 Dec 2018 11:29:04 +0530
Subject: [PATCH 6/9] calculate simple interest using jquery
---
sijquery.html | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
create mode 100644 sijquery.html
diff --git a/sijquery.html b/sijquery.html
new file mode 100644
index 0000000..9bcba8a
--- /dev/null
+++ b/sijquery.html
@@ -0,0 +1,54 @@
+
+
+ Simple Interest Calculation
+
+
+
+
+
+
+
+
+
From fe089398c5a2a1e3fe6afaf8ff323fd2c89ca248 Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Tue, 18 Dec 2018 10:12:00 +0530
Subject: [PATCH 7/9] Create transform.html
---
transform.html | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
create mode 100644 transform.html
diff --git a/transform.html b/transform.html
new file mode 100644
index 0000000..47f4931
--- /dev/null
+++ b/transform.html
@@ -0,0 +1,34 @@
+
+
+ Rotation and Scale effect in CSS
+
+
+
+
+

+
+
+

+
+
+

+
+
+
+
From a21adc0b88ecd3f326a30d41104b034399c7df57 Mon Sep 17 00:00:00 2001
From: avani112 <36026630+avani112@users.noreply.github.com>
Date: Tue, 18 Dec 2018 11:24:03 +0530
Subject: [PATCH 8/9] remove comment
---
Stopwatch.js | 1 -
1 file changed, 1 deletion(-)
diff --git a/Stopwatch.js b/Stopwatch.js
index 8e2a297..3fbe775 100644
--- a/Stopwatch.js
+++ b/Stopwatch.js
@@ -56,4 +56,3 @@ function reset(){
document.getElementById("display").innerHTML="00:00:00";
document.getElementById("startstop").innerHTML="Start";
}
-// window.setInterval(stopwatch,1000);
\ No newline at end of file
From 02508e13a90a714be7e5819c01cc37431e789cf9 Mon Sep 17 00:00:00 2001
From: ArjunVaskale <36169177+ArjunVaskale@users.noreply.github.com>
Date: Wed, 2 Oct 2019 15:59:56 +0530
Subject: [PATCH 9/9] Update simpleinterest.html
---
simpleinterest.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/simpleinterest.html b/simpleinterest.html
index 57b66e6..5abbcb2 100644
--- a/simpleinterest.html
+++ b/simpleinterest.html
@@ -40,7 +40,7 @@