Welcome to Doors2Stores



"Bringing understanding and awareness of eBay Stores"

eBay Store owners dedicated to sharing knowledge
and resources for a better shopping community

   

Indenting Text

 
The <blockquote> </blockquote> tags will indent text from both sides, especially nice when you don't want to use bullet items. You would enter the start tag <blockquote> at the start of where you want the indenting to begin and the end tag </blockquote> where you want to stop it.

If you type the following HTML coding

<p>Hi, my name is Kathy and I love to write plain and basic HTML Tutorials when I have time.  I hope you have been finding these tutorials helpful, at the least to get you started.</p><blockquote><p>So here is where the blockquote start tag was entered and now you see the text has now been indented.  A nice feature when one doesn't required bulleted items.</p><p>Now a new paragraph tag has been entered, so we have a new paragraph and it is still indented.  Don't forget, if you are new to HTML, please don't try and learn everything at once, take your time.</p></blockquote><p>Once the blockquote end tag has been entered, we return back to non-indented text and continue on ........</p>

You will get this:
 
Hi, my name is Kathy and I love to write plain and basic HTML Tutorials when I have time.  I hope you have been finding these tutorials helpful, at the least to get you started.

So here is where the blockquote start tag was entered and now you see the text has now been indented.  A nice feature when one doesn't required bulleted items.

Now a new paragraph tag has been entered, so we have a new paragraph and it is still indented.  Don't forget, if you are new to HTML, please don't try and learn everything at once, take your time.
Once the blockquote end tag has been entered, we return back to non-indented text and continue on ........
 
Return