%% generate tags start %%
#software-engineering
%% generate tags end %%
#software-engineering/google-site
```html
<script src="https://cdn.tailwindcss.com"></script>
<div id="container" class="h-full w-full">
<iframe
src="https://open.spotify.com/embed/playlist/1GLEmw6QgsqrZPYUBl8QHi"
class="w-full"
height="380"
frameborder="0"
allowtransparency="true"
allow="encrypted-media"
></iframe>
</div>
<script>
window.onload = function() {
var container = document.getElementById('container');
var iframe = container.querySelector('iframe');
// Function to update iframe height based on the container's height
function updateIframeHeight() {
var newHeight = container.offsetHeight + 'px';
iframe.style.height = newHeight;
}
// Update the iframe height when the window is resized
window.addEventListener('resize', updateIframeHeight);
// Also update iframe height initially
updateIframeHeight();
};
</script>
```