Write HTML code and see the preview in real-time
<html>
<head>
<title>My HTML Page</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #5D5CDE;
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
<p>Start editing this HTML document!</p>
</body>
</html>