Latest solutions
Latest comments
- @lakshmanan1205Submitted about 1 month ago@JonRe88Posted about 1 month ago
Puntos Positivos: Uso de HTML semántico:
Usaste etiquetas correctas como <main>, <section>, <h1>, <h2>, <ol>, <ul>, <table>, etc. La estructura jerárquica de títulos es adecuada.
Mejoras Sugeridas:
- Corrección en la tabla de nutrición (Error en la etiqueta <td>) En la fila de calorías, la etiqueta <strong> está mal cerrada. -Corrección: `<tr>
<thead> <tr> <th>Nutrient</th> <th>Amount</th> </tr> </thead> <tbody> <tr> <td>Calories</td> <td><strong>277kcal</strong></td> </tr> <tr> <td>Carbs</td> <td><strong>0g</strong></td> </tr> <tr> <td>Protein</td> <td><strong>20g</strong></td> </tr> <tr> <td>Fat</td> <td><strong>22g</strong></td> </tr> </tbody> </table>``` 3. Mejora en la Responsividad Asegúrate de que la imagen no sea demasiado grande en pantallas pequeñas. En el CSS, puedes agregar: `img { max-width: 100%; height: auto; display: block; }` También podrías envolver la imagen y el contenido en un div con display: flex para un mejor diseño en pantallas grandes.
0 - @Arthur18devSubmitted about 1 month ago
- @ikai2Submitted about 1 year ago@JonRe88Posted about 1 month ago
I think the letter was wider. And the hover is missing in LEARNING.
0 - @raphadevflowSubmitted 8 months ago