Hello All,
I am posting a very useful tutorial that is useful for both biggeners to experts, so here we are starting,
You can use MyCode, a simplified version of HTML, in your posts to create certain effects. Some of these are outlined below,
1. BOLD TEXT:
Example:
<b>This text is bold</b>
2. ITALIC TEXT:
Example:
<i>This text is italicized</i>
3. Under Line Text:
Example:
<u>This text is underlined</u>
4. Website Link:
Example:
<a href="http://www.example.com/">http://www.example.com/</a>
5. Website Link inside Text:
Example:
<a href="http://www.example.com/">Example.com</a>
6. Email Link:
Example:
<a href="mailto:[email protected]">[email protected]</a>
7. Email Link inside Text:
Example:
<a href="mailto:[email protected]">E-mail Me!</a>
8. Email Link with Subject:
Example:
<a href="mailto:[email protected]?subject=spam">E-mail with subject</a>
9. Quoted Text:
Example:
<quote>Quoted text will be here</quote>
10. Text with Preserved Formatting:
Example:
<code>Text with preserved formatting</code>
11. Image URLs :
Example:
<img src="http://www.php.net/images/php.gif">
12. Images with Specified Dimensions:
Example:
<img src="http://www.php.net/images/php.gif" width="50" height="50">
13. Text Color:
Example:
<font color="red">This text is red</font>
14. Text Size:
Example:
<font size="3">This text is size 3</font>
15. Text Font:
Example:
<font face="Tahoma">This font is Tahoma</font>
16. Text Alignment: Center
Example:
<div align="center">This is centered</div>
17. Text Alignment: Right
Example:
<div align="right">This is right-aligned</div>
18. List Items:
Example:
<ul>
<li>List item #1</li>
<li>List item #2</li>
<li>List Item #3</li>
</ul>
You can make an ordered list by using
I am posting a very useful tutorial that is useful for both biggeners to experts, so here we are starting,
You can use MyCode, a simplified version of HTML, in your posts to create certain effects. Some of these are outlined below,
1. BOLD TEXT:
<b></b>
Example:
<b>This text is bold</b>
2. ITALIC TEXT:
<i></i>
Example:
<i>This text is italicized</i>
3. Under Line Text:
<u></u>
Example:
<u>This text is underlined</u>
4. Website Link:
<a href="URL">http://www.example.com/</a>
Example:
<a href="http://www.example.com/">http://www.example.com/</a>
5. Website Link inside Text:
<a href="URL">Example.com</a>
Example:
<a href="http://www.example.com/">Example.com</a>
6. Email Link:
<a href="YOUR EMAIL">[email protected]</a>
Example:
<a href="mailto:[email protected]">[email protected]</a>
7. Email Link inside Text:
<a href="YOUR EMAIL">E-mail Me!</a>
Example:
<a href="mailto:[email protected]">E-mail Me!</a>
8. Email Link with Subject:
<a href="YOUR EMAIL?subject=spam">E-mail with subject</a>
Example:
<a href="mailto:[email protected]?subject=spam">E-mail with subject</a>
9. Quoted Text:
<quote></quote>
Example:
<quote>Quoted text will be here</quote>
10. Text with Preserved Formatting:
<code></code>
Example:
<code>Text with preserved formatting</code>
11. Image URLs :
<img src="URL">
Example:
<img src="http://www.php.net/images/php.gif">
12. Images with Specified Dimensions:
<img src="URL" width="50" height="50">
Example:
<img src="http://www.php.net/images/php.gif" width="50" height="50">
13. Text Color:
<font color="red"></font>
Example:
<font color="red">This text is red</font>
14. Text Size:
<font size="3"></font>
Example:
<font size="3">This text is size 3</font>
15. Text Font:
<font face="Tahoma"></font>
Example:
<font face="Tahoma">This font is Tahoma</font>
16. Text Alignment: Center
<div align="center"></div>
Example:
<div align="center">This is centered</div>
17. Text Alignment: Right
<div align="right"></div>
Example:
<div align="right">This is right-aligned</div>
18. List Items:
<ul>
<li>List item #1</li>
<li>List item #2</li>
<li>List Item #3</li>
</ul>
Example:
<ul>
<li>List item #1</li>
<li>List item #2</li>
<li>List Item #3</li>
</ul>
You can make an ordered list by using
- for a numbered, and
- for an alphabetical list.
19. Marquee Text:
<marquee></marquee>
Example:
<marquee>Your Text</marquee>
20. Blinking Text:
<blink></blink>
Example:
<blink>Your Text</blink>
21. Script Text:
<script></script>
Example:
<script>Your Scripted Text</script>
Thats all for Now, hope you Enjoy it ,
Thankyou for Reading
- for an alphabetical list.