so this is the preferred way of doing it?
<div class="image"><img alt="" src="..." /></div>
and define in the css
div.image{
text-align:center;
}
also, in Sigil, it suggest the following as a way to get your picture to be in the TOC
<h1 title="CHAPTER 1"><img src="../Images/myimage.png" /></h1>
When it comes to <h>, can you have a "class" like with <div>? Is title a "class"? If not, what is "title" in html terms?
would i just define in the css
h1{
text-align:center;
}
|