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
10 changes: 0 additions & 10 deletions backend/.env.example

This file was deleted.

36 changes: 36 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,41 @@ <h4>Data Structures in Java</h4>
</div>
</div>
</div>

</section>
<!-- Testimonials Section -->
<div class="testimonials">
<h1>Testimonials</h1>
<div class="test-body">
<div class="item">
<img src="https://livedemo00.template-help.com/wt_prod-10943/images/testimonials-1-120x120.jpg">
<div class="name">ABC</div>
<small class="desig">Designer</small>
<div class="share"></div>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempore dolor voluptas perspiciatis ratione perferendis quia vero rerum dignissimos similique reiciendis illum a ea quibusdam enim quam ex, excepturi obcaecati tenetur.</p>
</div>
<div class="item">
<img src="https://livedemo00.template-help.com/wt_prod-10943/images/testimonials-2-120x120.jpg">
<div class="name">EFG</div>
<small class="desig">Coder</small>
<div class="share"></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas placeat recusandae non possimus voluptas dignissimos reprehenderit, iure cum quidem vero animi! Aut quas reiciendis expedita maxime eligendi est in placeat!
</p>
</div>
<div class="item">
<img src="https://livedemo00.template-help.com/wt_prod-10943/images/testimonials-3-120x120.jpg">
<div class="name">XYZ</div>
<small class="desig">Developer</small>
<div class="share"></div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sit dolor quo hic id. Sunt voluptate non fugiat itaque amet minima neque nemo magnam, temporibus doloribus. Blanditiis, accusamus, iste obcaecati amet velit aspernatur nemo cupiditate repudiandae magnam repellat voluptas iure modi?</p>
</div>
</div>
<a href="moretestimonials.html">
<button>View All Testimonials</button>
</a>
</div>


<footer class="site-footer">
<div class="footer-container">
<div class="footer-section">
Expand Down Expand Up @@ -128,6 +162,8 @@ <h3>Connect With Us</h3>
</div>
</div>
</div>

<div class="footer-section"></div>
<div class="footer-bottom">
<p>&copy; 2024 codeX100. All rights reserved.</p>
</div>
Expand Down
12 changes: 12 additions & 0 deletions frontend/moretestimonials.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>More-Testimonials</title>
</head>
<body style="text-align: center;">
<H1>More-Testimonials</H1>
<p>Here are some more testimonials from our students:</p>
</body>
</html>
89 changes: 88 additions & 1 deletion frontend/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -502,4 +502,91 @@ body {
width: 100%;
}
}
}
}

/* Subrat's Code*/

.testimonials{
padding-bottom: 2.2em;
text-align: center;
color: #666;
font-size: 1em;
background-color: #f9f9f9;
}
.testimonials h1{
padding: 10px;
color: #050505;
font-size: 2em;
font-weight: bolder;
}
.testimonials .test-body{padding: 1em;}
.testimonials .item{
text-align: center;
padding: 1em 0;
}
.testimonials img{
width: 4.8em;
height: 4.8em;
border-radius: 50%;
}
.testimonials .name{color: #007bff;}
.testimonials .desig{
font-size: 0.7em;
padding: 0.5em 0;
color: #777;
}
.testimonials .share{
margin: 0 auto;
width: 5em;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.testimonials i{
color: #bfbfbf;
padding: 0.5em 0;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
cursor: pointer;
}

.testimonials button{
font-size: 1em;
background-color: #007bff;
color: white;
padding: 0.8em 2em;
border-radius: 2em;
border: 0;
cursor: pointer;
-webkit-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
}
.testimonials button:hover{
background-color: #444;
}

@media (min-width: 38.4rem){
.testimonials{
font-size: 1.2em;
}
.testimonials .test-body{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.testimonials p{
text-align: justify;
padding: 1em;

}
}