How to create iframe video with heading and description under the video BUT heading and description should have same width as video. You know like normal video (youtube...)
My biggest problem is that big space under video.
.archbody{
display: flex;
flex-direction: column;
}
.abtopvideo {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 700px;
}
.abtopvideo h1 {
color: black;
}
iframe {
width: 50%;
height: 50%;
}
<div class="archbody">
<div class="abtopvideo">
<iframe allowFullScreen frameborder="1" height="400" mozallowfullscreen src="https://player.vimeo.com/video/251979190" webkitAllowFullScreen width="500">
<p>See our <a href="news.html">newsflashes</a>.</p>
</iframe>
<h1>This is heading</h1>
<p>This is description.This is description.This is description.This is description.
This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.This is description.</p>
</div>
</div>