diff --git a/Logo.jpg b/Logo.jpg new file mode 100755 index 0000000..7a4f7a3 Binary files /dev/null and b/Logo.jpg differ diff --git a/background.jpg b/background.jpg new file mode 100644 index 0000000..9d6e0c4 Binary files /dev/null and b/background.jpg differ diff --git a/chatting.jpg b/chatting.jpg new file mode 100644 index 0000000..153b6fd Binary files /dev/null and b/chatting.jpg differ diff --git a/couplestherapy.jpeg b/couplestherapy.jpeg new file mode 100644 index 0000000..ee1af00 Binary files /dev/null and b/couplestherapy.jpeg differ diff --git a/grouptherapy.jpg b/grouptherapy.jpg new file mode 100644 index 0000000..024abf5 Binary files /dev/null and b/grouptherapy.jpg differ diff --git a/images.jpg b/images.jpg new file mode 100644 index 0000000..076379e Binary files /dev/null and b/images.jpg differ diff --git a/index.html b/index.html index a2219e1..5b8526f 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,47 @@ - - - +
+ + + +





+
+

Our Treatment Options Include

+

+
+
+ Therapy +

Online Therapy


+

Online therapy is psychotherapy that takes place over the internet.Services can be offered over the phone, through video conferencing, or messaging, rather than in person.

+ +
+ Grouptherapy +

Group therapy


+

Group psychotherapy or group therapy is a form of psychotherapy in which one or more therapists treat a small group of clients together as a group

+
+
+ couplestherapy +

Couples Therapy


+

Couples therapy is a form of psychotherapy that can help you and your partner improve your relationship.If you are having relationship difficulties, you can seek couples therapy

+
+
+ +
+ +
+ + diff --git a/style/style.css b/style/style.css index e69de29..943592c 100644 --- a/style/style.css +++ b/style/style.css @@ -0,0 +1,113 @@ +*{ + margin: 0%; + padding: 0%; +} +.container{ + width: 100%; + height: 100vh; + background-image:url("../background.jpg"); + background-position: center; + background-size: cover; + background-attachment: fixed; +} +.logo-image{ + width: 140px;} +.nav-bar{ +background-color:white; +display: flex; +align-items: center; +justify-content: space-around; +padding: 10px 20p; +border-bottom: solid rgb(236, 133, 150); +} +.nav{ +display: flex; +gap: 25px; +} +.nav li{ + list-style-type: none; + font-weight: bold; +} +.nav li:hover{ + color: hotpink; +} +.btn{ +padding: 10px 10px; +border-radius: 7px; +color: white; +background-color: hotpink; +border:none +} +.title{ + text-align: center; + color: white; + background-color:rgb(73, 151, 196); +} + +.product-items{ + width: 100%; + display: flex; + flex-direction: row; + justify-content: space-around; + align-items: center; + gap: 5px; +} +.product-items div{ + width: 70%; + height: 50%; + background-color: white; + flex-direction: column; + margin: 35px 20px; +} +.product-item{ + display: flex; + justify-self: center; + justify-content: space-around; +} +.product-image{ + height: 250px; + width: 100%; +} + +.paragraph{ + display: flex; + text-align: center; + margin-bottom: 10px; +} + +.copyright{ + text-align: center; + border-top: solid white; + padding-top: 15px; + font-weight: bold; + color: rgb(25, 66, 80); + margin: 0px 20px; +} + +@media (max-width:600px) { + .logo-image{ + width: 100px;} + + .nav-bar{ + margin: 5px 5px; + justify-content: space-evenly; + gap: 10px; + } + .btn{ + font-size: 12px; + height: 40px; + width: 100px; + margin: 5px 10px; +} + .product-items{ + flex-direction:column; + align-items: center; + } + + .paragraph{ + align-items: center; + color: rgb(146, 17, 81); + font-family: Verdana, Geneva, Tahoma, sans-serif; + font-size: 18px; + } +}