WebTricks
Home
Home
Tutorials
Q&A Forum
Blog
Videos
Sign up / Register
HTML Headings - Playground
Back to Lesson
HTML Code
<!DOCTYPE html> <html> <head> <title>My First HTML</title> <meta charset="UTF-8"> </head> <body> <h1 style="font-size:50px">This is HTML heading 1</h1> <p>This is a paragraph.</p> <hr> <h2>This is HTML heading 2</h2> <p>This is another paragraph.</p> <hr> </body> </html>
CSS Code
/* Write your CSS here */
Run Code