<div id="imported-xzzzzzz">
<!-- Imported content will be displayed here -->
</div>
<!-- Include jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
// JavaScript (jQuery) to duplicate the .xzzzzz block
$(document).ready(function () {
// Load content from page1.html
$.get('/lenta_work.html', function (data) {
// Extract the .xzzzzz block from the loaded content
var importedContent = $(data).find('.xzzzzzz');
// Append the imported content to the target element
$('#imported-xzzzzzz').append(importedContent);
});
});
</script>