List view prdoduct | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

List view prdoduct

I want have list view product and show short description and long description in shop page. Thanks for your help

9th Feb 2022, 2:40 PM
Reza Nargesi
Reza Nargesi - avatar
9 Answers
0
Is it like table or which description?
9th Feb 2022, 3:27 PM
T.Coded
T.Coded - avatar
0
Ya like table but we have two description:short and more
9th Feb 2022, 3:30 PM
Reza Nargesi
Reza Nargesi - avatar
0
Okay
9th Feb 2022, 3:34 PM
T.Coded
T.Coded - avatar
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>
9th Feb 2022, 4:06 PM
T.Coded
T.Coded - avatar
0
Use this๐Ÿ‘†๐Ÿ‘†๐Ÿ‘†
9th Feb 2022, 4:06 PM
T.Coded
T.Coded - avatar
0
Check this
9th Feb 2022, 4:20 PM
T.Coded
T.Coded - avatar
0
Thanks๐Ÿ‘Œ
9th Feb 2022, 5:15 PM
Reza Nargesi
Reza Nargesi - avatar
0
Okay
10th Feb 2022, 11:28 AM
T.Coded
T.Coded - avatar