BTW, what's the usual formatting for html and css in an epub? I was taught to tab in for each command, but sigil and most ebooks I have looked at seem to write everything without tabs.
ie:
The way I learned html/css
Code:
<html>
<body>
<p class="...">
<span>...</span>
</p>
</body>
</html>
but sigil seems to do everything flat
Code:
<html>
<body>
<p class="...">
<span>...</span>
</p>
</body>
</html>
which is correct/better?