-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmallproj.html
More file actions
34 lines (34 loc) · 1.29 KB
/
smallproj.html
File metadata and controls
34 lines (34 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>2x2 Reviews Grid</title>
</head>
<body>
<div class="main-container">
<div class="reviews-grid">
<div class="review-card">
<h3 class="review-heading">Review 1</h3>
<p class="review-text">"Amazing Product! Highly recommend it to everyone!"</p>
<p class="review-person">Alex</p>
</div>
<div class="review-card">
<h3 class="review-heading">Review 2</h3>
<p class="review-text">"Not what I expected, but still decent."</p>
<p class="review-person">Jamie</p>
</div>
<div class="review-card">
<h3 class="review-heading">Review 3</h3>
<p class="review-text">"Great value for the price. Will buy again!"</p>
<p class="review-person">Jordan</p>
</div>
<div class="review-card">
<h3 class="review-heading">Review 4</h3>
<p class="review-text">"The quality could be better, but overall satisfied."</p>
<p class="review-person">Casey</p>
</div>
</div>
</body>
</html>