How can I play video with H264 – MPEG-4 AVC (part 10) (h264) codec using tag

I am writing angular app to stream videos returned from backend. These videos are live streams that I tested that work using VLC Media Player > Open Network Stream without any issues.

Codec returned looks like this:

enter image description here

I am using video html element where I set the src of source to returned link from the backend:

<video #videoPlayer id="video" preload="auto" muted>
 <source #videoSrc type="video/mp4">
 Your browser does not support the video tag.
</video>

Can I play videos with codec like this on web browsers?