Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added chatting.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added couplestherapy.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added grouptherapy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 44 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,47 @@
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<!-- start here -->
</body>
</html>
<div class="container">


<header class="nav-bar">
<img src="Logo.jpg" alt="Logo" class="logo-image">
<ul class="nav">
<li>Home</li>
<li>About Us</li>
<li>Services</li>
<li>Resources</li>
<li>Contact</li>
</ul>
<button class="btn">BOOK APPOINTMENT</button>
</header>
<br><br><br> <br><br><br>
<div class="main">
<h2 class="title">Our Treatment Options Include</h2>
<br><br>
<div class="product-items">
<div class="product-item">
<img src="chatting.jpg" alt="Therapy" class="product-image">
<div class="paragraph"><h4>Online Therapy</h4> <br>
<p>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.</p> </div></div>

<div class="product-item">
<img src="grouptherapy.jpg" alt="Grouptherapy" class="product-image">
<div class="paragraph"><h4>Group therapy</h4> <br>
<p>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</p> </div>
</div>
<div class="product-item">
<img src="couplestherapy.jpeg" alt="couplestherapy" class="product-image">
<div class="paragraph"><h4>Couples Therapy</h4> <br>
<p>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</p> </div>
</div>
</div>

<footer>
<div class="copyright">Copyright &copy;2022</div>

</div>
</footer>
</div>
</body>
</html>
113 changes: 113 additions & 0 deletions style/style.css
Original file line number Diff line number Diff line change
@@ -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;
}
}