Edit HTML with inline styles
HTML
<head>
<style>
head {
display: block;
}
style[contenteditable] {
display: block;
}
</style>
<style contenteditable>
body {
background-color: lightblue;
}
</style>
</head>
<body>
This is some body text
</body>