⇦ Back

HTML parser

This parses html! Simply type your code in the box below and look at the output! Also, inline styling and inline scripting works too! you can also import external scripts!!! This is based on the Note-Taking web-app I made.


Click the run button or start typing to see the output!

Some stuff to try:

<head>
<style>
/* Feel free to add styling here */
* {
/* '*' means that is styles the whole page. */
color: blue;
/*Text color */
background-color: white;
/* The background color */
}
</style>
</head>

<body>
<h1>A heading</h1>
<p>A paragraph</p>
<button id='button'>A button!</button>
</body>

To reset to the defaults (without my styling)

@import url('defaults.css')