Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Getting Started with HTML | WebAcademy</title> <!-- Open Graph --> <meta property="og:type" content="article"> <meta property="og:title" content="Getting Started with HTML"> <meta property="og:description" content="A beginner's guide to writing your first HTML page from scratch."> <meta property="og:image" content="https://webacademy.com/img/html-intro.jpg"> <meta property="og:url" content="https://webacademy.com/html/intro/"> <meta property="og:site_name" content="WebAcademy"> <!-- Twitter Card --> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Getting Started with HTML"> <meta name="twitter:description" content="A beginner's guide to writing your first HTML page."> <meta name="twitter:image" content="https://webacademy.com/img/html-intro.jpg"> </head> <body>...</body> </html>
Result
Open