PriyaGhosal / SkillWise

This Repository is now officially part of Hacktoberfest 2024 !!!
https://skillwise.netlify.app/
Other
123 stars 352 forks source link

Issues in #marketing.html file. #613

Open anshumangahlot opened 4 days ago

anshumangahlot commented 4 days ago

Issues:

  1. Incorrect Meta Description:

The meta description incorrectly mentions "Modern Physics skills" instead of "digital marketing skills."

  1. Typo in Image Filename:

The image filename for the "Introduction to Digital Marketing" card is digtal.jpg, which is a typo.

  1. Image Aspect Ratio:

Images are currently set to a width of 300 and height of 100, which may lead to distortion.

  1. Accessibility of Links:

Anchor tags do not have visible text, which may hinder accessibility.

  1. Lack of Semantic HTML:

The HTML structure lacks semantic tags such as header, main, and footer tag.

  1. Insufficient alt Text Descriptions:

Some alt text descriptions for images are too brief (e.g., "SEO image").

  1. Responsive Design:

Although the viewport meta tag is included, the CSS needs to ensure responsiveness on different devices.

  1. Duplicate Titles in Course Cards:

Course titles are quite similar, which may affect SEO.

Additionally Note: I am submitting a Pull request(#689) which fixes the issues listed above.

github-actions[bot] commented 4 days ago

Thank you for creating this issue! 🎉 Your issue will soon be reviewed by Project Maintainers. In the meantime, please make sure to provide all the necessary details and context. If you have any questions or additional information, feel free to add them here. Your contributions are highly appreciated! 😊

You can also check our CONTRIBUTING.md for guidelines on contributing to this project.

github-actions[bot] commented 4 days ago

Thanks for creating the issue in SkillWise! Before you start working on your PR, please make sure to:

nevil2006 commented 4 days ago

Incorrect Meta Description:

Action: Update the meta description to reflect "digital marketing skills" accurately. Ensure it succinctly summarizes the content of the page while incorporating relevant keywords. Typo in Image Filename:

Action: Rename the image file from digtal.jpg to digital.jpg to correct the typo and improve file organization. Image Aspect Ratio:

Action: Adjust the CSS for images to maintain their aspect ratio. You can use properties like object-fit: cover; or max-width: 100%; height: auto; to prevent distortion. Accessibility of Links:

Action: Ensure all anchor tags contain meaningful text. If the links must be visually hidden, consider using aria-label attributes to maintain accessibility. Lack of Semantic HTML:

Action: Revise the HTML structure to include semantic tags. For example: html Copy code

...
...
...

This helps search engines and screen readers better understand the structure of your content.

Insufficient Alt Text Descriptions:

Action: Improve the alt text for images by providing more descriptive text. Instead of just "SEO image," use something like "Illustration of SEO strategies in digital marketing." Responsive Design:

Action: Review your CSS to ensure it uses relative units (like percentages or em/rem) instead of fixed pixel values. Additionally, use media queries to adapt styles for different screen sizes. Duplicate Titles in Course Cards:

Action: Differentiate course titles by making them more descriptive or unique. Consider including the specific focus of each course to enhance SEO and clarity.