I'm using DreamWeaver to code and even though it structures CSS nicely automatically it doesn't do the same with HTML. What I mean is that instead of structuring the code as this:
<html>
<body>
<h1>Hello People</h1>
</body>
</html>
It shows it as:
<html>
<body>
<h1>Hello People</h1>
</body>
</html>
How will I be able to form the HTML in a way like that automatically on DreamWeaver? Thank you on advance!