Marcel
Marcel

Reputation: 6310

What tools allows me to keep track of html tags when doing web development?

What tools allows me keep track of tags when doing web development? For example, I would like to be able to quickly find whether I missed closing a div tag.

At the moment I am using notepad++ to write html. It highlights starting and ending tags, but it can take me time to review almost all tags to find where I went wrong.

Upvotes: 1

Views: 645

Answers (6)

Adam Neal
Adam Neal

Reputation: 2177

The Web Developer add-on for Firefox is very handy. It gives you a good way to highlight different tags on the page and makes it easy to visualize them. Also has too many tools to list here, including HTML and CSS validators.

Upvotes: 0

Mike Henry
Mike Henry

Reputation: 2441

Indenting is helpful. I also find the Html Validator extension for Firefox to be handy for checking for HTML issues once you're viewing the page in the browser (which is especially handy for checking server-generated HTML).

Upvotes: -1

Mez
Mez

Reputation: 24953

HTMLTidy is pretty much the de-facto standard for this kind of thing nowadays

Tidy Windows Installer

Tidy FAQ

Upvotes: 3

NGittlen
NGittlen

Reputation: 319

Whenever I'm writing a page from scratch I indent the tags so the inner ones are nested within the outer tags.

Ex:

<body>
    <div>
       Content here...
    </div>
</body>

I also write out the opening and closing tags at the same time, plan out the page layout, and then go back and fill in the content later.

Upvotes: 2

nickf
nickf

Reputation: 546085

You can't go past proper indentation, IMHO.

Upvotes: 0

Joe Phillips
Joe Phillips

Reputation: 51150

You could make the opening and closing tags at the same time. You could indent. Choosing an IDE or tool specifically for that seems a little bit overkill in my opinion.

Upvotes: 1

Related Questions