How to use
- Enter your HTML code.
- Click "Check".
- Issues like mismatched tags, duplicate ids, and missing alt are listed.
๐ฏ Use Cases
- Catch mismatched tags after finishing markup
- Find duplicate id attributes
- Check whether image alt attributes are missing
Example
Input
<!DOCTYPE html> <html> <img src="logo.png"> <p id="main">A</p> <p id="main">B</p> </html>
Output
โ 5๋ฒ์งธ ์ค: id="main" ๊ฐ 4๋ฒ์งธ ์ค๊ณผ ์ค๋ณต๋ฉ๋๋ค โ ๏ธ 2๋ฒ์งธ ์ค: <html> ์ lang ์์ฑ์ด ์์ต๋๋ค โ ๏ธ 3๋ฒ์งธ ์ค: <img> ์ alt ์์ฑ์ด ์์ต๋๋ค
The duplicate id="main" is reported as an error (โ), while the missing lang on <html> and the missing alt on <img> are reported as warnings (โ ๏ธ), each with the line number where the issue occurs. Messages are shown in Korean.
FAQ
- Does it give the same results as the official W3C validator?
- No. This tool is a practical checker focused on common issues โ mismatched tags, duplicate ids, missing alt, etc. โ and isn't a full HTML5 spec validation.
- What does it flag as a warning?
- It warns about a missing DOCTYPE, deprecated tags (center, font, etc.), a missing lang attribute, and missing alt on img elements.
- Is the code I enter sent to a server?
- No. It's checked entirely in your browser.
More Coding Tools
๐
JSON Formatter
Prettify, validate & minify JSON
๐๏ธ
Timestamp Converter
Convert Unix timestamp โ date
๐งฉ
JSON String Encoder
Convert text โ JSON string literal
โจ
JS/CSS Formatter
Indent & tidy JS/CSS code
โ๏ธ
JS/CSS Minifier
Strip comments & whitespace
๐งฝ
HTML Formatter
Indent HTML by tag structure
๐งน
XML Formatter
Indent XML by tag structure
๐๏ธ
SQL Formatter
Break SQL into clauses & indent
๐ฃ
HTML Entity Encoder
Convert special chars โ HTML entities
๐
Excel to HTML Table
Convert spreadsheet data to HTML TABLE
โ๏ธ
Link Extractor
Extract href/src links from HTML
๐จ
Color Picker
Get HEX, RGB & HSL color codes
๐
PHP Syntax Checker
Check bracket/string pairing (practical checker)
๐๏ธ
MySQL Syntax Checker
Check bracket/quote pairing (practical checker)
โ๏ธ
Online HTML Editor
Write & edit HTML visually