HTML Editor
Created by
Slidear
Code Input
See Result »
<!-- This is a comment --> <!DOCTYPE html> <!-- ▲ Descibes what type of HTML is used --> <html> <!-- HTML tag (Must, inside it, have all the code apart from comments or doctypes.) --> <head> <title>My HTML</title> <!-- Displays a title in the tab (on a website only, not a code editor like this one.) --> </head> <body> <h1>A heading</h1> <p>A paragraph</p> </body> <style> /* CSS (for style) */ /* This is a css comment */ /* Stylise Text */ h1, p { font-family: sans-serif; } /* Back color */ body { background-color: #afa; } </style> </html>
Code Result