diff --git a/homework/2-calculator/AlexandraKoz/index.html b/homework/2-calculator/AlexandraKoz/index.html
new file mode 100644
index 0000000..8ffc6a7
--- /dev/null
+++ b/homework/2-calculator/AlexandraKoz/index.html
@@ -0,0 +1,38 @@
+
+
+
+
+ Calculator
+
+
+
+
+
diff --git a/homework/2-calculator/AlexandraKoz/style.css b/homework/2-calculator/AlexandraKoz/style.css
new file mode 100644
index 0000000..e5a579f
--- /dev/null
+++ b/homework/2-calculator/AlexandraKoz/style.css
@@ -0,0 +1,26 @@
+body {
+ background-color: #22B2EC;
+ margin: 0;
+}
+
+#calculator {
+ width: 272px;
+ height: 350px;
+ background: white;
+ border-radius: 0 0 10px 10px;
+ margin: 150px auto;
+}
+#top {
+ height: 105px;
+ width: 272px;
+ background: #54656C;
+}
+
+#keys {
+ height: 47px;
+ width: 65px;
+}
+#numbers {
+ height: 47px;
+ width: 65px;
+}