0
List view prdoduct
I want have list view product and show short description and long description in shop page. Thanks for your help
9 Respostas
0
Is it like table or which description?
0
Ya like table but we have two description:short and more
0
Okay
0
<!DOCTYPE html>
<html lang="en"></html>
<head><title>Product and descriptions</title>
<meta charset="UTF-8">
<title>Page title</title>
</head>
<body>
<table border="3">
<thead>
<th>Product</th>
<th>Short Descriptions</th>
<th>Long Descriptions</th>
</thead>
<tr>
<td>Book</td>
<td>This is what is been used for writing</td>
<td>It is use with pen or pencil. The is used in school and college. </td>
</tr>
<tr>
<td>Mathematics</td>
<td>This is the study of number</td>
<td>It is the science of number that involves basically <i>Addition</i> <i>Subtraction</i> <i>Multiplication</i> and <i>Division</i></td>
</tr>
</table>
</body>
</html>
0
Use this👆👆👆
0
Check this
0
Thanks👌
0
Okay