Show video as part of the post?

When I want to embed a video on a WP post I use the html5 <video> tag. It’s very simple to put into the html code and is much like the <img> tag. W3Schools breaks it down for dummies. Here is their sample code:

<video width="320" height="240" controls>
       <source src="https://wordpress.stackexchange.com/questions/259420/movie.mp4" type="video/mp4">
       <source src="movie.ogg" type="video/ogg">
    Your browser does not support the video tag.
</video>