WebTricks
Home
Home
Tutorials
Q&A Forum
Blog
Videos
Sign up / Register
HTML Text Formatting - Playground
Back to Lesson
HTML Code
<!DOCTYPE html> <html> <head> <title>HTML Text Formatting</title> <meta charset="UTF-8"> </head> <body> <p><strong>Webtrickshome</strong>'s goal is to: <q>Help beginners learn web design and development easier and faster.</q></p> <blockquote cite="https://www.magicaltrekkers.com/travel-for-a-cause"> At Magical Trekkers, we firmly believe that humanity begins at home which is why we donate a part of our earnings to improve the medical, educational and environmental status of Nepal. </blockquote> <p><abbr title="United Nations High Commissioner for Refugees">UNHCR</abbr> was founded in December 14, 1950.</p> <p><cite>Self-portrait, The Desperate Man</cite> by Gustave Courbet.</p> <p><bdo dir="rtl">This text will be written from right to left</bdo></p> <!-- This is a comment --> </body> </html>
CSS Code
/* Write your CSS here */
Run Code