קוד לקבלת קידוד של טקסט Html מעוצב
<!DOCTYPE html>
<html>
<head>
<title>HTML TO CODE</title>
<style>
body {
margin-left: 100px;
margin-right: 100px;
}
.container {
display: flex;
flex-direction: column;
text-align: right;
.editor-container, .output-container {
width: 100%;
height: 200px;
border: 1px solid #ccc;
padding: 20px;
background-color: #fff;
margin: 10px 0; /* margin for spacing between the containers */
overflow: auto;
text-align: right;
}
.editor {
text-align: right;
}
</style>
</head>
<body>
<div class="container">
<label>:קלט</label>
<div class="editor-container">
<div id="editor" contenteditable="true" oninput="updateOutput()"></div>
</div>
<label>פלט</label>
<div class="output-container">
<div id="output"></div>
</div>
</div>
<script>
function updateOutput() {
const editorContent = document.getElementById('editor').innerHTML;
document.getElementById('output').textContent = editorContent;
}
</script>
</body>
</html>