+
+
shop with smile
+
+
+
+
+ kids product
+
+
+
+
+
Frock
200 DKK
+
+
+
+
+
Jacket
400 DKK
+
+
+
+
+
White T-shirt
250 DKK
+
+
+
+
+
Onesie
300 DKK
+
+
+
+
+
white T-shirt
200 DKK
+
+
+
+
+ Women
+
+
+
+
+
Salwar
500 Dkk
+
+
+
+
+
T-shirt
200 DKK
+
+
+
+
+
Sweater
400 DKK
+
+
+
+
+
Jacket
600 DKK
+
+
+
+
+
Jacket
600 Dkk
+
+
+
+
+ Men
+
+
+
+
+
Jeans
500 DKK
+
+
+
+
+
Formal wear
300 Dkk
+
+
+
+
+
T-shirt
300 DKK
+
+
+
+
+
Jeans
500 DKK
+
+
+
+
+
Formal wear
300 Dkk
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/login.css b/login.css
new file mode 100644
index 0000000..7462f78
--- /dev/null
+++ b/login.css
@@ -0,0 +1,73 @@
+*{
+ box-sizing: border-box;
+}
+body {
+ background-color:#B08BBB;
+ font-family: Arial;
+ padding: 0;
+ margin: 0;
+}
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+}
+header {
+ position:sticky;
+ top:0;
+ display:flex;
+ justify-content:space-evenly;
+ align-items: center;
+ font-size:15px;
+ background-color:#D7E9B9;
+ padding: 20px;
+}
+header a{
+ text-decoration: none;
+ color: rgb(21, 20, 20);
+}
+.login {
+ max-width: 400px;
+ margin: 0 auto;
+ padding: 20px;
+}
+h1 {
+ text-align: center;
+ margin-bottom: 30px;
+}
+form {
+ background-color: #f5f5f5;
+ padding: 20px;
+ border-radius: 10px;
+ margin-left: auto;
+ margin-right: auto;
+}
+label {
+ display: block;
+ margin-bottom: 10px;
+}
+input[type="text"], input[type="password"] {
+ padding: 12px 20px;
+ margin-bottom: 20px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+input[type="submit"] {
+ display:block;
+ background-color:#a573b4;
+ color: rgba(23, 1, 1, 0.933);
+ padding: 12px 20px;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ margin-top: 10px;
+}
+input[type="submit"]:hover {
+ background-color: #a708a9;
+}
+@media screen and (max-width: 500px) {
+ header {
+ flex-direction:initial;
+ gap:1rem;
+ padding :1rem;
+ }
+}
\ No newline at end of file
diff --git a/login.html b/login.html
new file mode 100644
index 0000000..6e379a9
--- /dev/null
+++ b/login.html
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
login
+
+
+
+
+
\ No newline at end of file
diff --git a/signup.css b/signup.css
new file mode 100644
index 0000000..3716c81
--- /dev/null
+++ b/signup.css
@@ -0,0 +1,78 @@
+*{
+ box-sizing: border-box;
+}
+body {
+ font-family: Arial;
+ background-color:#B08BBB;
+ padding: 0;
+ margin: 0;
+}
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+}
+header {
+ position:sticky;
+ top:0;
+ display:flex;
+ justify-content:space-evenly;
+ align-items: center;
+ font-size:15px;
+ background-color:#D7E9B9;
+ padding: 20px;
+}
+header a{
+ text-decoration: none;
+ color: rgb(21, 20, 20);
+}
+/*.login {
+ max-width: 400px;
+ margin: 0 auto;
+ padding: 20px;
+}*/
+.signup{
+ max-width: 400px;
+ margin: 0 auto;
+ padding: 20px;
+}
+h1 {
+ text-align: center;
+ margin-bottom: 30px;
+}
+form {
+ background-color: #f5f5f5;
+ padding: 20px;
+ border-radius: 10px;
+ margin-left: auto;
+ margin-right: auto;
+}
+label {
+ display: block;
+ margin-bottom: 10px;
+}
+input[type="text"], input[type="email"], input[type="password"] {
+ padding: 12px 20px;
+ margin-bottom: 20px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+input[type="submit"] {
+ display: block;
+ background-color: #a573b4;
+ color: white;
+ padding: 12px 20px;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ margin-top: 10px;
+}
+input[type="submit"]:hover {
+ background-color: #a708a9;
+}
+@media screen and (max-width: 500px) {
+ header {
+ flex-direction:initial;
+ gap:1rem;
+ padding :1rem;
+ }
+}
\ No newline at end of file
diff --git a/signup.html b/signup.html
new file mode 100644
index 0000000..623fb25
--- /dev/null
+++ b/signup.html
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
signup
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..9e9cd8b
--- /dev/null
+++ b/style.css
@@ -0,0 +1,130 @@
+* {
+ box-sizing: border-box;
+ text-decoration: none;
+ list-style-type: none;
+}
+body {
+ font-family: Arial, sans-serif;
+ background-color: #B08BBB;
+ padding: 0;
+ margin: 0;
+}
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+}
+header{
+ position:sticky;
+ top:0;
+ display:flex;
+ justify-content:space-evenly;
+ align-items: center;
+ font-size:15px;
+ background-color:#D7E9B9;
+ padding: 20px;
+}
+header a{
+ text-decoration: none;
+ color: rgb(21, 20, 20);
+}
+.animation-image{
+ background-image: url("images/kid.jpg");
+ background-repeat:no-repeat;
+ background-position: center;
+ background-size: cover;
+ height:300px;
+ animation: slide 10s infinite;
+}
+@keyframes slide{
+ 0%{
+ background-image: url("images/kid7.jpg");
+ }
+ 25%{
+ background-image: url("images/kid1.jpg");
+ }
+ 50%{
+ background-image: url("images/men1.jpg");
+ }
+ 75%{
+ background-image: url("images/accessory1.jpg");
+ }
+ 100%{
+ background-image: url("images/accessory2.jpg");
+ }
+}
+.image__text h1{
+ text-align: center;
+ color:rgb(21, 20, 20);
+
+}
+h2{
+ text-align: center;
+ color:rgb(21, 20, 20);
+}
+.main {
+ display: grid;
+ grid-row: 1/3;
+ grid-template-columns: repeat(3,1fr);
+ grid-gap: 1rem;
+ flex-wrap: wrap;
+}
+.card {
+ box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
+ width: 100%;
+ }
+ .card:hover {
+ box-shadow: 0 8px 16px 0 rgba(0,0,0,5);
+ }
+.product {
+ margin: 10px;
+ background-color: #fff;
+ padding: 20px;
+ height: auto;
+}
+.product img {
+ max-width: 100%;
+}
+
+section h1{
+ text-align: center;
+ color:rgb(39, 3, 73);
+}
+.animation{
+ width:800px;
+ height:400px;
+ background:url("images/image1.jpg");
+ margin:100px auto;
+}
+footer {
+ display:flex;
+ justify-content: space-around;
+ background-color: #674188;
+ color: #fff;
+ padding: 20px;
+}
+.footer_media a{
+ text-align: center;
+ color:#fff;
+ }
+.footer_media a i{
+ text-align: end;
+ font-size:1.2rem;
+ padding:2px;
+ }
+ @media screen and (max-width: 500px) {
+ header{
+ flex-direction:initial;
+ gap:1rem;
+ padding :1rem;
+ }
+ .main {
+ grid-template-columns: repeat(1,1fr);
+ grid-gap: 1rem;
+ flex-wrap: wrap;
+ }
+ .product {
+ margin:auto;
+ padding: 30px;
+ }
+
+ }
\ No newline at end of file