Find missing HTML tag

12,248

Solution 1

Any tool which gives you basic text editing tools can tell you this very easily.Some useful tools are: 1. Visual Studio 2. Notepad++ 3. MS word(yes this also shows) 4. Front Page(very old player in this field) Lots of many more. Above of all, open your page in chrome or Mozilla then press F12, see the code and fix it.

Solution 2

Try to validate page on W3 validator (validate via file uplod)it will show all errors.

Solution 3

You can use the Auto-Format feature (Ctrl+K+D) of Microsoft Visual Studio - it reformats your code so that you can easily see whether there are missing tags. I love this feature, it often comes in handy.

Solution 4

You can use http://validator.w3.org/ or notepad++ is the best option to check div's.

Share:
12,248
Frank Martin
Author by

Frank Martin

Updated on June 04, 2022

Comments

  • Frank Martin
    Frank Martin almost 2 years

    Is there a tool which I can use to see missing tag in HTML?

    For e.g. if I wrote <div> but forgot to end it with </div> so is there a tool for this? I have a very large HTML file and I suspect because of missing tag I am having problems in displaying so need some tool that can identify it.

  • sampoh
    sampoh over 8 years
    This is a list of software and not a solution for the problem. For example, what do you do to fix the closing tag after you've opened Firefox inspection tool?