This tool removes HTML <video> tag attributes(e.g. class) from your code while preserving essential ones like href on links and src on images so that content and basic functionality remain intact.
class attribute from all <a> tags
About <video> Tag
The <video> tag in HTML is a powerful, built-in element used to embed video content directly into a web page without requiring third-party plugins like Adobe Flash or Microsoft Silverlight.
Introduced in HTML5, it brought native multimedia support to the browser, allowing developers to create rich, media-driven experiences using just standard code. Think of it as the HTML equivalent of a built-in media player—it provides the structure for the video, and you can control its appearance and behavior using various attributes.
Example: Before and After
Before (heavy attributes):
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
After (cleaned, essentials kept):
<video controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Functionality:
Remove specific attribute from specific tag.
*Load sample HTML.
*Copy output to clipboard.
*Clear all.
*Keyboard shortcut (Ctrl+Enter).
*Auto-update tag count.
*Status messages with feedback.
*Statistics tracking.