Text Designing "Formatting" HTML elements : html

Text designing "Formatting" HTML elements :


1. function Element -"<b>":
Example - This text is bold

Code - 

<p><b>This text is bold</b></p>

2. function Elements -"<uppercase>": (text-transform:)
Example - This text is important!

Code - 

<p><strong>This text is important!</strong></p>


2. function Elements -"<capitalize>": (text-transform:)
Example - This Text is Important!

Code - 

<p><strong>This text is important!</strong></p>

2. function Elements -"<lowercase>": (text-tranform:)
Example - this text is important!

Code - 

<p><strong>This text is important!</strong></p>


2. function Elements -"<strong>":
Example - This text is important!

Code - 

<p><strong>This text is important!</strong></p>

3. function Elements -"<i>":
Example - italic text is so nice

Code - 

<p><i>This text is Italic</i></p>

4. function Elements -"<em>":
Example - This text is emphasized

Code - 

<p><em>This text is emphasized</em></p>

5. function Elements -"<small>":
Example - This is some smaller text.

Code - 

<p><small>This is some smaller text.</small></p>

6. function Elements -"<mark>":
Example - Do not forget to buy milk today.

Code - 

<p>Do not forget to buy <mark>milk</mark> today. </p>

7. function Elements -"<del>":
Example - My favorite color is blue red.

Code - 

<p>My favorite color is <del>blue</del> red.</p>

8. function Elements -"<ins>":
Example - >My favorite color is blue red.

Code - 

<p>My favorite color is <del>blue</del> <ins>red</ins>.</p>

9. function Elements -"<sub>":
Example -

1. This is "subscripted" text.

2. 

Code - 1.

<p>This is <sub>"subscripted"</sub> text.</p>

42 = 2

Code - 2.

<p>4 <sub>2</sub> = 2 </p>

10. function Elements -"<sup>":
Example -

1. This is "superscripted" text.

2. 3 2 = 9

Code - 1.

<p>This is <sup>"superscripted"</sup> text.</p>

3 2 = 9

Code - 2.

<p> 3 <sup> 2 </sup> = 9 </p>

11. Function Elements - "<pre>"
Example: Dear Sir, thooo. thank you!

Tag "<p>":

Code:

<p>
  Dear Sir, 
  thooo. 
  thank you!
</p>


Example: 

Dear Sir, 

thooo. 

thank you!

Tag "<pre>":

Code:

<pre>
   Dear Sir,
   thooo.
   thank you!
</pre>

Comments

Popular posts from this blog

Click Count Data Page: Spin/Vote