Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <!-- Character encoding --> <meta charset="UTF-8"> <!-- Viewport for responsive design --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Page title (shows in browser tab) --> <title>My Awesome Website | Home</title> <!-- SEO description --> <meta name="description" content="Welcome to My Awesome Website, where we cover web development tutorials."> <!-- External CSS --> <link rel="stylesheet" href="styles.css"> <!-- Favicon --> <link rel="icon" href="favicon.ico" type="image/x-icon"> <!-- Google Font --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"> </head> <body> <h1>Hello World</h1> </body> </html>
Result
Open