Welcome to Doors2Stores



"Bringing understanding and awareness of eBay Stores"

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

   

A Few Basic Tags

 
The HTML coding is in blue and the results of what would actually show is below each section.
 

PARAGRAPH TAG

<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>Paragraph elements are defined by the <p> tag.</p>


This is a paragraph.
This is a paragraph.
Paragraph elements are defined by the <p> tag.


FONT TAGS

<font face="Verdana" size="2">This is Verdana font in size 2.</font>
<font face="Times" size="4">This is Times font in size 4.</font>
<font face="Arial" size="3" >This is Arial font (my favourite) in size 3.</font>


This is Verdana font in size 2.
This is Times font in size 4.
This is Arial font (my favourite) in size 3.

* It is always good practice to include both the face attribute and value AND a size attribute and value with the font tag.


FORMATTING TEXT TAGS

<b>This is bold font</b>
<i>This is italic font</i>
<b><i>This is bold italic font</i></b>


This is bold font
This is italic font
This is bold italic font


A REVIEW

<p><font face="Verdana" size="2"><b>This is a paragraph using Verdana font in size 2 in bold.</b></font></p>
<p><font face="Times" size="4"><i>This is a paragraph using Times font in size 4 in italics.</i></font></p>
<p><font face="Arial" size="3"><b><i>This is a paragraph using Arial font (my favourite) in size 3 in bold italic.</i></b></font></p>


This is a paragraph using Verdana font in size 2 in bold.
This is a paragraph using Times font in size 4 in italics.
This is a paragraph using Arial font (my favourite) in size 3 in bold italic.

* notice how I also entered my end tags in the reverse order of my start tags


UNDERSTANDING HTML

For the following example below, try to read the HTML and understand what each HTML tag is;

<p><font face="Arial" size="3"><b><i>This is a paragraph using Arial font (my favourite) in size 3 in bold italic.</i></b></font></p>

Need a little help?

<p> is a start tag
<font face="Arial" size="3"> font is a start tag, face is the first attribute and size is the second attribute, Arial is the value of the first attribute and 3 is the value of the second attribute
<b> is a start tag
<i> is a start tag
This is a paragraph using Arial font (my favourite) in size 3 in bold italic. is the element content
</i> is an end tag
</b> is an end tag
</font> is an end tag
</p> is an end tag
 
Return