Text Designing "Formatting" HTML elements : html
Text designing "Formatting" HTML elements :
1. function Element -"<b>":
Example - This text is bold
Code -
2. function Elements -"<uppercase>": (text-transform:)
Example - This text is important!
Code -
2. function Elements -"<capitalize>": (text-transform:)
Example - This Text is Important!
Code -
2. function Elements -"<lowercase>": (text-tranform:)
Example - this text is important!
Code -
2. function Elements -"<strong>":
Example - This text is important!
Code -
3. function Elements -"<i>":
Example - italic text is so nice
Code -
4. function Elements -"<em>":
Example - This text is emphasized
Code -
5. function Elements -"<small>":
Example - This is some smaller text.
Code -
6. function Elements -"<mark>":
Example - Do not forget to buy milk today.
Code -
7. function Elements -"<del>":
Example - My favorite color is blue red.
Code -
8. function Elements -"<ins>":
Example - >My favorite color is blue red.
Code -
9. function Elements -"<sub>":
Example -
1. This is "subscripted" text.
2.
Code - 1.
42 = 2
Code - 2.
10. function Elements -"<sup>":
Example -
1. This is "superscripted" text.
2. 3 2 = 9
Code - 1.
3 2 = 9
Code - 2.
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
Post a Comment