#how to fix this line from appearing?
5 messages · Page 1 of 1 (latest)
You have multiple unclosed anchor tags. Also, it looks like you are trying to make buttons be children of anchor tags, which is a violation of the HTML language specifications. The children of anchor tags must not be "interactive content", which means buttons and other anchor tags are not allowed to be nested inside of an anchor.
where in my code is unclosed anchor tags?
<a href="https://downloadyoutubecomment.com/help" target="_blank">
<button id="settings-button" class="settings-button">Settings</button>
<a href="https://downloadyoutubecomment.com/settings" target="_blank">
<button id="github-button" class="github-button">GitHub</button>
<a href="https://github.com/Loading617/DownloadYouTubeComment" target="_blank">
<button id="changelog-button" class="changelog-button">Changelog</button>
<a href="https://downloadyoutubecomment.com/changelog" target="_blank">
</a>
This has 4 opening anchor tags and only one closing anchor tag.