Write HTML code and see the preview in real-time
<html>
<head>
<title>My HTML Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
line-height: 1.6;
}
h1 {
color: #5D5CDE;
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is a preview of your HTML code.</p>
<p>Edit the code in the editor tab and click "Update Preview" to see changes.</p>
</body>
</html>