cyberbuddy-io / open-source-contribution-for-beginners

This repository targets beginners to guide them about open source and help them make their first contribution.
https://opensource.cyberbuddy.live/contributors/
MIT License
92 stars 168 forks source link

I FOUND SOME ERROR IN THIS FILE SO I DID #460

Open ganesh-159th opened 4 months ago

ganesh-159th commented 4 months ago

The primary issue with the original HTML code is the misuse of tags outside of the

structure.
tags are intended to be used exclusively within elements. Using them outside this context is semantically incorrect and can cause rendering issues. Additionally, there was a missing closing tag for a
element, which could lead to further rendering problems.

vercel[bot] commented 4 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
open-source-contribution-for-beginners ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 29, 2024 9:12am
ganesh-159th commented 4 months ago

Issue Title Misuse of

Tags Outside Structure and Missing Closing Tag

Issue Description The primary issue with the original HTML code is the misuse of

tags outside of the structure.
tags are intended to be used exclusively within elements. Using them outside this context is semantically incorrect and can cause rendering issues. Additionally, there was a missing closing tag for a
element, which could lead to further rendering problems.

Steps to Reproduce View the HTML code in a browser or HTML editor. Notice the incorrect usage of

tags outside the structure. Observe the missing closing tag for the container div. Expected Behavior

tags should be used only within a structure. All
elements should have corresponding closing
tags. Actual Behavior
tags are misused outside the structure. A closing tag for the container div is missing. Suggested Fix Replace the misused
tags with
tags and add the missing closing
tag. Ensure all form elements have corresponding