Skip to content

Commit 339f1ab

Browse files
finally review section done
1 parent 44b63d6 commit 339f1ab

2 files changed

Lines changed: 122 additions & 4 deletions

File tree

index.html

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,70 @@ <h2 class="section-title ">Joined Thousands of Productive Users</h2>
7272
<!-- User Review (Challenges part) -->
7373

7474
<section>
75-
<h2>What our users say</h2>
75+
<div class="review-container">
76+
<h2 class="section-title">What our users say</h2>
77+
78+
79+
<div class="all-review">
80+
<div class="review-card">
81+
<div class="stars">
82+
<img src="Assets/icon-star.png" alt="icon-star.png">
83+
<img src="Assets/icon-star.png" alt="icon-star.png">
84+
<img src="Assets/icon-star.png" alt="icon-star.png">
85+
<img src="Assets/icon-star.png" alt="icon-star.png">
86+
</div>
87+
<div class="review-content">
88+
<h3 class="review-title">Loved by Designers</h3>
89+
<p class="comment">This template instantly leveled up our presence.” – Studio Vertex</p>
90+
</div>
91+
<div class="profile">
92+
<img class="profile-pic" src="Assets/avatar.png" alt="avatar.png" >
93+
<div>
94+
<p class="user-name">Reviewer name</p>
95+
<p class="date">Date</p>
96+
</div>
97+
</div>
98+
</div>
99+
<div class="review-card">
100+
<div class="stars">
101+
<img src="Assets/icon-star.png" alt="icon-star.png">
102+
<img src="Assets/icon-star.png" alt="icon-star.png">
103+
<img src="Assets/icon-star.png" alt="icon-star.png">
104+
<img src="Assets/icon-star.png" alt="icon-star.png">
105+
</div>
106+
<div class="review-content">
107+
<h3 class="review-title">Loved by Designers</h3>
108+
<p class="comment">This template instantly leveled up our presence.” – Studio Vertex</p>
109+
</div>
110+
<div class="profile">
111+
<img class="profile-pic" src="Assets/avatar.png" alt="avatar.png" >
112+
<div>
113+
<p class="user-name">Reviewer name</p>
114+
<p class="date">Date</p>
115+
</div>
116+
</div>
117+
</div>
118+
<div class="review-card">
119+
<div class="stars">
120+
<img src="Assets/icon-star.png" alt="icon-star.png">
121+
<img src="Assets/icon-star.png" alt="icon-star.png">
122+
<img src="Assets/icon-star.png" alt="icon-star.png">
123+
<img src="Assets/icon-star.png" alt="icon-star.png">
124+
</div>
125+
<div class="review-content">
126+
<h3 class="review-title">Loved by Designers</h3>
127+
<p class="comment">This template instantly leveled up our presence.” – Studio Vertex</p>
128+
</div>
129+
<div class="profile">
130+
<img class="profile-pic" src="Assets/avatar.png" alt="avatar.png" >
131+
<div>
132+
<p class="user-name">Reviewer name</p>
133+
<p class="date">Date</p>
134+
</div>
135+
</div>
136+
</div>
137+
</div>
138+
</div>
76139
</section>
77140
<!-- Ready to focus (NO POINT FOR THIS PART) -->
78141

styles/style.css

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ li{
1717
a{
1818
text-decoration: none;
1919
}
20-
20+
body{
21+
background-color: #F5F8FF;
22+
}
2123
main{
2224
max-width: 1140px;
2325
margin: 0px auto;
@@ -117,8 +119,6 @@ nav ul {
117119
padding: 50px;
118120
}
119121

120-
121-
122122
.statistics{
123123
display: flex;
124124
justify-content: space-evenly;
@@ -137,6 +137,61 @@ nav ul {
137137
font-family: "Inter", sans-serif;
138138
}
139139

140+
/* Review Section */
141+
.review-container{
142+
text-align: center;
143+
margin-top: 137px;
144+
margin-bottom: 100px;
145+
146+
}
147+
148+
.all-review{
149+
margin-top: 50px;
150+
display: flex;
151+
gap: 20px;
152+
}
153+
.review-card{
154+
padding: 24px;
155+
max-width: 366px;
156+
border-radius: 10px;
157+
text-align: start;
158+
background-color: #FAFCFF;
159+
}
160+
.stars{
161+
margin-bottom: 24px;
162+
}
163+
.review-content{
164+
margin-bottom: 24px;
165+
}
166+
.review-title{
167+
font-family: "Inter", sans-serif;
168+
color: #1E1E1E;
169+
font-size: 24px;
170+
margin-bottom: 8px;
171+
}
172+
.comment{
173+
font-size: 16px;
174+
font-family: "Inter", sans-serif;
175+
color: #1E1E1E;
176+
177+
}
178+
.profile{
179+
display: flex;
180+
gap: 12px;
181+
align-items: center;
182+
font-family: "Inter", sans-serif;
183+
}
184+
.profile-pic{
185+
border-radius: 50%;
186+
}
187+
.user-name{
188+
font-weight: bold;
189+
color: #757575;
190+
font-size: 17px;
191+
}
192+
.date{
193+
color: #B3B3B3;
194+
}
140195
/* Contuct section */
141196

142197

0 commit comments

Comments
 (0)