diff --git a/img/background.png b/img/background.png
new file mode 100644
index 0000000..606f3be
Binary files /dev/null and b/img/background.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..7b58423
--- /dev/null
+++ b/index.html
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+ Homework1
+
+
+
+
+
+
+
+
Welcome to Paint Quote System
+
Consequat adipisicing ea do labore irure adipisicing occaecat cupidatat excepteur duis mo
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/signin.html b/signin.html
new file mode 100644
index 0000000..a31fba0
--- /dev/null
+++ b/signin.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+ Welcome to Sign in Page
+
+
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..ca6bf01
--- /dev/null
+++ b/style.css
@@ -0,0 +1,87 @@
+body {
+ height: 100%;
+ font-family: Arial, sans-serif;
+ background-image: url("../img/background.png");
+}
+
+
+.main_login {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ padding: 20px
+}
+
+/* right panel */
+.right_panel{
+ flex: 1;
+}
+.signup_form {
+ height: 36vh;
+ width: 25vw;
+ max-width: 350px;
+ background-color: white;
+ padding: 10px 30px;
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
+ border-radius: 8px;
+}
+
+.signup_title {
+ text-align: center;
+}
+.signup_title p{
+ font-size: smaller;
+ font-weight:lighter;
+}
+.form_group {
+ padding: 15px 0px;
+}
+
+.form_group label {
+ padding: 0px 0px 5px 0px;
+ display: block;
+}
+
+.form_group input {
+ width: 100%;
+ padding: 5px;
+ display: block;
+ border-radius: 3px;
+ border-style: solid;
+ box-sizing: border-box;
+}
+
+.form_group button {
+ display: block;
+ width: 100%;
+ background-color: #0a69bd;
+ color: white;
+ border-radius: 3px;
+ height: 38px;
+}
+
+
+.info {
+ font-size: smaller;
+ margin-top: 15px;
+ text-align: center;
+}
+.info a{
+ text-decoration: none;
+}
+/* left panel */
+.left_panel{
+ flex: 1;
+}
+.welcome_message {
+ display: inline-block;
+ color: #004785;
+ padding: 40px;
+}
+
+.welcome_title {
+ display: inline-block;
+ border-bottom: 1px solid #004785;
+ padding-bottom: 20px;
+}
\ No newline at end of file