diff --git a/01 - JavaScript Drum Kit/index-suboku.html b/01 - JavaScript Drum Kit/index-suboku.html
new file mode 100644
index 0000000..896e6bb
--- /dev/null
+++ b/01 - JavaScript Drum Kit/index-suboku.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+ JS Drum Kit
+
+
+
+JS Drum Kit
+
+
+
+
+ A
+ clap
+
+
+ S
+ hihat
+
+
+ D
+ kick
+
+
+ F
+ openhat
+
+
+ G
+ boom
+
+
+ H
+ ride
+
+
+ J
+ snare
+
+
+ K
+ tom
+
+
+ L
+ tink
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/02 - JS + CSS Clock/README.md b/02 - JS + CSS Clock/README.md
index 0ca0415..1e9cfeb 100644
--- a/02 - JS + CSS Clock/README.md
+++ b/02 - JS + CSS Clock/README.md
@@ -147,7 +147,7 @@ function initDate() {
function updateDate() {
secondDeg += (1 / 60) * 360;
minDeg += ((1 / 60) / 60) * 360;
- hourDeg += (((1 / 60) / 60) / 12);
+ hourDeg += (((1 / 60) / 60) / 12) * 360;
secHand.style.transform = `rotate(${ secondDeg}deg)`;
minHand.style.transform = `rotate(${ minDeg }deg)`;
@@ -158,4 +158,4 @@ initDate();
setInterval(updateDate, 1000);
```
-问题解决。大功告成!
\ No newline at end of file
+问题解决。大功告成!
diff --git a/02 - JS + CSS Clock/index-suboku.html b/02 - JS + CSS Clock/index-suboku.html
new file mode 100644
index 0000000..e054723
--- /dev/null
+++ b/02 - JS + CSS Clock/index-suboku.html
@@ -0,0 +1,273 @@
+
+
+
+
+ JS-clock
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file