-
Notifications
You must be signed in to change notification settings - Fork 1
/
my_reviews.html
34 lines (34 loc) · 945 Bytes
/
my_reviews.html
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#review{
margin: auto;
margin-top: 100px;
width: 50%;
display: grid;
grid-template-rows: repeat(2,1fr);
grid-template-columns: auto;
gap: 100px;
}
#review > div > p > a{
text-decoration: none;
}
</style>
</head>
<body>
<div id="review">
<div>
<h1>My Products to Review</h1>
<p>You do not have any products to review. <a href="">Start Shopping</a></p>
</div>
<div>
<h2>My Previous Reviews</h2>
<p>You have no previously reviewed products. <a href="">Start Shopping</a></p>
</div>
</div>
</body>
</html>